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

@ -927,7 +927,7 @@ export default class App extends Component {
if (client.cm(msg.prefix.name) === client.cm(client.serverPrefix.name)) {
target = SERVER_BUFFER;
} else {
let context = msg.tags['+draft/channel-context'];
let context = msg.tags["+draft/channel-context"];
if (context && client.isChannel(context) && State.getBuffer(this.state, { server: serverID, name: context })) {
target = context;
} else {

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) {