Remove two remaining single quote strings

This commit is contained in:
Simon Ser 2024-09-29 11:45:13 +02:00
parent 07ae5f7167
commit 78bfd16f25
2 changed files with 2 additions and 2 deletions

View file

@ -738,7 +738,7 @@ export default class Client extends EventTarget {
isNick(name) {
// A dollar sign is used for server-wide broadcasts
return !this.isServer(name) && !this.isChannel(name) && !name.startsWith('$');
return !this.isServer(name) && !this.isChannel(name) && !name.startsWith("$");
}
setPingInterval(sec) {