chore: refactor instance observer code, remove double call (#722)
This commit is contained in:
parent
09f3281e36
commit
618ea31a57
|
@ -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 = () => {
|
||||
|
|
Loading…
Reference in New Issue