1
0
Fork 0

Fix wrong isSelf logic

This commit is contained in:
Lim Chee Aun 2022-12-15 01:45:36 +08:00
parent e96b1433ff
commit ca71d45a77

View file

@ -50,7 +50,7 @@ function Notification({ notification }) {
const actualStatusID = status?.reblog?.id || status?.id;
const currentAccount = store.session.get('currentAccount');
const isSelf = currentAccount?.id === account?.id;
const isSelf = currentAccount === account?.id;
const isVoted = status?.poll?.voted;
const text =