fix: fix null exception on community page (#1504)

more-tiny-style-fixes
Nolan Lawson 2019-09-21 13:43:45 -07:00 zatwierdzone przez GitHub
rodzic 2b4edee216
commit 5332a4e1e9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -2,11 +2,12 @@ import { store } from '../_store/store'
import { cacheFirstUpdateAfter } from '../_utils/sync'
import { database } from '../_database/database'
import { getFollowRequests } from '../_api/followRequests'
import { get } from '../_utils/lodash-lite'
export async function updateFollowRequestCountIfLockedAccount (instanceName) {
const { verifyCredentials, loggedInInstances } = store.get()
if (!verifyCredentials[instanceName].locked) {
if (!get(verifyCredentials, [instanceName, 'locked'])) {
return
}