-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix threaded reply, threaded react, and some private message things #181
base: master
Are you sure you want to change the base?
Conversation
@@ -101,7 +101,7 @@ func (c *Channel) IsPublicChannel() bool { | |||
|
|||
// IsPrivateChannel returns true if the channel is private. | |||
func (c *Channel) IsPrivateChannel() bool { | |||
return c.IsGroup && c.IsPrivate | |||
return (c.IsGroup || c.IsChannel) && c.IsPrivate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm often missing messages from others (reactions come in fine) in these such private channels (that it had trouble joining before this change), so I wonder if something else needs to change here.
In case this has been forgotten or overlooked: this branch solved my problems with private channels as well. Been using it for a few days. I can check over the next few days whether I seem to be missing messages from these private channels, but for now until this is merged I will run this fork. Thank you for this effort @zachdecook :) |
All of my "day 1" bugs using this.
Fixes #180 and half of #168
Also Fixes #178