mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:44:49 +08:00
FIX: do not refresh metadata of not followed channel (#20766)
This commit is contained in:
parent
d4c6511d31
commit
b5c4e1b813
|
@ -270,7 +270,9 @@ export default class ChatSubscriptionsManager extends Service {
|
|||
|
||||
@bind
|
||||
_onChannelMetadata(busData) {
|
||||
this.chatChannelsManager.find(busData.chat_channel_id).then((channel) => {
|
||||
this.chatChannelsManager
|
||||
.find(busData.chat_channel_id, { fetchIfNotFound: false })
|
||||
.then((channel) => {
|
||||
if (channel) {
|
||||
channel.setProperties({
|
||||
memberships_count: busData.memberships_count,
|
||||
|
|
Loading…
Reference in New Issue
Block a user