Commit e0953ff5 authored by Thomas's avatar Thomas
Browse files

fix a crash

parent 4ec3a430
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -197,7 +197,7 @@ public class MutedAccounts implements Serializable {
        MutedAccounts mutedAccounts = getMutedAccount(forAccount);
        if (mutedAccounts != null && mutedAccounts.accounts != null) {
            for (Account account : mutedAccounts.accounts) {
                if (account.id.equals(target.id)) {
                if (account != null && target != null && account.id.equals(target.id)) {
                    return true;
                }
            }