Fix name and rank change check on startup

This commit is contained in:
Natsumi
2022-05-24 23:20:11 +12:00
parent 8574024bd1
commit 8b9b7f2907

View File

@@ -10790,6 +10790,12 @@ speechSynthesis.getVoices();
this.friendLogTable.data = await database.getFriendLogHistory();
await API.refreshFriends();
this.friendLogInitStatus = true;
for (var friend of friendLogCurrentArray) {
var ref = API.cachedUsers.get(friend.userId);
if (typeof ref !== 'undefined') {
this.updateFriendship(ref);
}
}
};
$app.methods.addFriendship = function (id) {