forked from CringeStudios/gamja
Ignore RPL_TOPICWHOTIME
We don't need this piece of information yet, and we don't want to clutter the server buffer with channel messages.
This commit is contained in:
parent
516de5b3ea
commit
0b03f9d767
@ -404,6 +404,9 @@ export default class App extends Component {
|
|||||||
|
|
||||||
this.setBufferState(channel, { topic });
|
this.setBufferState(channel, { topic });
|
||||||
break;
|
break;
|
||||||
|
case irc.RPL_TOPICWHOTIME:
|
||||||
|
// Ignore
|
||||||
|
break;
|
||||||
case irc.RPL_NAMREPLY:
|
case irc.RPL_NAMREPLY:
|
||||||
var channel = msg.params[2];
|
var channel = msg.params[2];
|
||||||
var membersList = msg.params[3].split(" ");
|
var membersList = msg.params[3].split(" ");
|
||||||
|
@ -6,6 +6,7 @@ export const RPL_MYINFO = "004";
|
|||||||
export const RPL_ENDOFWHO = "315";
|
export const RPL_ENDOFWHO = "315";
|
||||||
export const RPL_NOTOPIC = "331";
|
export const RPL_NOTOPIC = "331";
|
||||||
export const RPL_TOPIC = "332";
|
export const RPL_TOPIC = "332";
|
||||||
|
export const RPL_TOPICWHOTIME = "333";
|
||||||
export const RPL_WHOREPLY = "352";
|
export const RPL_WHOREPLY = "352";
|
||||||
export const RPL_NAMREPLY = "353";
|
export const RPL_NAMREPLY = "353";
|
||||||
export const RPL_ENDOFNAMES = "366";
|
export const RPL_ENDOFNAMES = "366";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user