Skip to content
This repository was archived by the owner on Feb 21, 2018. It is now read-only.

Commit daddc6e

Browse files
committed
src/structures: Prefer JOIN over SJOIN because we're not getting ops
1 parent dfdbfe1 commit daddc6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/structures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def join(self, channel, op=False):
8484
"""
8585
uid = self.uid
8686

87-
return "SJOIN %s %s + %s" % (channel.ts, channel.name, uid)
87+
return ":%s JOIN %s %s +" % (uid, channel.ts, channel.name)
8888

8989
def burst(self):
9090
"""

0 commit comments

Comments
 (0)