This commit is contained in:
Sanjay Sargam 2024-05-03 12:24:43 +05:30 committed by GitHub
commit 570b90db36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -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);
}