forked from CringeStudios/gamja
Remove two remaining single quote strings
This commit is contained in:
parent
07ae5f7167
commit
78bfd16f25
@ -927,7 +927,7 @@ export default class App extends Component {
|
|||||||
if (client.cm(msg.prefix.name) === client.cm(client.serverPrefix.name)) {
|
if (client.cm(msg.prefix.name) === client.cm(client.serverPrefix.name)) {
|
||||||
target = SERVER_BUFFER;
|
target = SERVER_BUFFER;
|
||||||
} else {
|
} 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 })) {
|
if (context && client.isChannel(context) && State.getBuffer(this.state, { server: serverID, name: context })) {
|
||||||
target = context;
|
target = context;
|
||||||
} else {
|
} else {
|
||||||
|
@ -738,7 +738,7 @@ export default class Client extends EventTarget {
|
|||||||
|
|
||||||
isNick(name) {
|
isNick(name) {
|
||||||
// A dollar sign is used for server-wide broadcasts
|
// 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) {
|
setPingInterval(sec) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user