-
Notifications
You must be signed in to change notification settings - Fork 281
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
Issue with channel sort and public channels #2603
Comments
Hello @Annastrin , I have few questions:
Thank you |
Thank you for your quick response, @MartinCupela.
Some additional information: there are no members in those specific public channels, we display them to all our users based on the channels' cid. But we still would like users to be able to pin those channels or hide them. |
Hello @Annastrin , could you please contact our support team that will route your request to the right engineering team? This issue is related to back-end not providing consistent outputs on the same inputs. Please use the following form: |
We have some weird issue with our channel sort and public and announcement channels (not-messaging channels) on development app.
We are using this sort:
const sort: ChannelSort = [{ pinned_at: -1 }, { last_updated_at: -1 }, { last_message_at: -1 }];
and this channel filters:
For some reason, channels from production app do appear, but development app channels of the same type and cid don't appear until I remove
{ pinned_at: -1 }
.So, with the
const sort: ChannelSort = [{ last_updated_at: -1 }, { last_message_at: -1 }];
I can see those channels.What might be the reason of this issue?
The text was updated successfully, but these errors were encountered: