Merge 99a3b93bf0
into 224c054b04
This commit is contained in:
commit
570b90db36
|
@ -438,9 +438,13 @@ class ThreadMessagesView extends React.Component<IThreadMessagesViewProps, IThre
|
|||
};
|
||||
|
||||
toggleFollowThread = async (isFollowingThread: boolean, tmid: string) => {
|
||||
const { displayingThreads, currentFilter } = this.state;
|
||||
try {
|
||||
await Services.toggleFollowMessage(tmid, !isFollowingThread);
|
||||
EventEmitter.emit(LISTENER, { message: isFollowingThread ? I18n.t('Unfollowed_thread') : I18n.t('Following_thread') });
|
||||
if (currentFilter === Filter.Following) {
|
||||
this.setState({ displayingThreads: displayingThreads.filter(thread => thread.id !== tmid) });
|
||||
}
|
||||
} catch (e) {
|
||||
log(e);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue