This commit is contained in:
starnakin 2024-05-15 16:30:37 +02:00
parent bc7d87704b
commit d4f041f312

View File

@ -48,7 +48,11 @@ export default class Notice {
stop() {
if (this._socket) {
this._socket.close();
try{
this._socket.close();
}
catch (e)
{}
this._socket = undefined;
}
}