Skip to content
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

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

zachdecook
Copy link

@zachdecook zachdecook commented Aug 19, 2022

All of my "day 1" bugs using this.

Fixes #180 and half of #168

Also Fixes #178

@zachdecook zachdecook changed the title Fix threaded reply and some private message things Fix threaded reply, threaded react, and some private message things Aug 20, 2022
@@ -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
Copy link
Author

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.

@ajwhouse
Copy link

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 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants