chore: refactor instance observer code, remove double call (#722)

This commit is contained in:
Nolan Lawson 2018-12-04 06:44:19 -08:00 committed by GitHub
parent 09f3281e36
commit 618ea31a57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 5 deletions

View File

@ -25,12 +25,11 @@ export function instanceObservers (store) {
if (!currentInstance) {
return
}
updateVerifyCredentialsForInstance(currentInstance)
updateInstanceInfo(currentInstance)
updateCustomEmojiForInstance(currentInstance)
updateLists()
updatePushSubscriptionForInstance(currentInstance)
/* no await */ updateVerifyCredentialsForInstance(currentInstance)
/* no await */ updateCustomEmojiForInstance(currentInstance)
/* no await */ updateLists()
/* no await */ updatePushSubscriptionForInstance(currentInstance)
await updateInstanceInfo(currentInstance)
let currentInstanceIsUnchanged = () => {