Fix chat silence bug
This commit is contained in:
parent
45afb665b9
commit
ea1583dcac
1 changed files with 6 additions and 2 deletions
|
@ -190,6 +190,8 @@ const useChatSilences = () => {
|
|||
const data = await getChatSilences();
|
||||
if (data) {
|
||||
setSilenced(true);
|
||||
} else {
|
||||
setSilenced(false);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -228,8 +230,10 @@ const useChatSilences = () => {
|
|||
};
|
||||
|
||||
useEffect(() => {
|
||||
fetchChatSilence();
|
||||
}, []);
|
||||
if (chat?.id) {
|
||||
fetchChatSilence();
|
||||
}
|
||||
}, [chat]);
|
||||
|
||||
return { isSilenced, handleSilence };
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue