You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
Is there a documentation on how to change channels type from 'public' to 'messaging'? I've tried with updatePartial, but it didn't work: "UpdateChannelPartial failed with error: \"field type is reserved and cannot updated\"". Actually, it would be very useful if we could change the type of channels from 'messaging' to 'public' and vice versa.
I'm not sure about this. How can we define pinned_at?
No, there isn't any data-related difference between them.
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.
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: