1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-16 01:56:55 +00:00

Finish removing emote usage data reporting

This commit is contained in:
Kane York 2017-09-15 16:26:44 -07:00
parent 8626b476db
commit 1aa1046073
2 changed files with 14 additions and 16 deletions

View file

@ -67,15 +67,15 @@ type ClientMessage struct {
func (cm ClientMessage) Reply(cmd string, args interface{}) ClientMessage {
return ClientMessage{
MessageID: cm.MessageID,
Command: cmd,
Command: cmd,
Arguments: args,
}
}
func (cm ClientMessage) ReplyJSON(cmd string, argsJSON string) ClientMessage {
n := ClientMessage{
MessageID: cm.MessageID,
Command: cmd,
MessageID: cm.MessageID,
Command: cmd,
origArguments: argsJSON,
}
n.parseOrigArguments()