Support keepMutedChatsArchived flag

This commit is contained in:
Fedor Indutny 2022-05-25 13:44:05 -07:00 committed by GitHub
parent e281fbe0e0
commit 7138daf5ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 4 deletions

View file

@ -315,9 +315,14 @@ export function toAccountRecord(
if (typeof subscriberCurrencyCode === 'string') {
accountRecord.subscriberCurrencyCode = subscriberCurrencyCode;
}
accountRecord.displayBadgesOnProfile = Boolean(
window.storage.get('displayBadgesOnProfile')
);
const displayBadgesOnProfile = window.storage.get('displayBadgesOnProfile');
if (displayBadgesOnProfile !== undefined) {
accountRecord.displayBadgesOnProfile = displayBadgesOnProfile;
}
const keepMutedChatsArchived = window.storage.get('keepMutedChatsArchived');
if (keepMutedChatsArchived !== undefined) {
accountRecord.keepMutedChatsArchived = keepMutedChatsArchived;
}
applyUnknownFields(accountRecord, conversation);
@ -933,6 +938,7 @@ export async function mergeAccountRecord(
subscriberId,
subscriberCurrencyCode,
displayBadgesOnProfile,
keepMutedChatsArchived,
} = accountRecord;
const updatedConversations = new Array<ConversationModel>();
@ -1124,6 +1130,7 @@ export async function mergeAccountRecord(
window.storage.put('subscriberCurrencyCode', subscriberCurrencyCode);
}
window.storage.put('displayBadgesOnProfile', Boolean(displayBadgesOnProfile));
window.storage.put('keepMutedChatsArchived', Boolean(keepMutedChatsArchived));
const ourID = window.ConversationController.getOurConversationId();