Fix storage upload for universal timers
This commit is contained in:
parent
287abd241d
commit
3776909c24
1 changed files with 5 additions and 1 deletions
|
@ -521,7 +521,11 @@ export async function startApp(): Promise<void> {
|
|||
newValue: number | undefined
|
||||
): Promise<void> => {
|
||||
await universalExpireTimer.set(newValue);
|
||||
window.Signal.Services.storageServiceUploadJob();
|
||||
const conversationId = window.ConversationController.getOurConversationIdOrThrow();
|
||||
const account = window.ConversationController.get(conversationId);
|
||||
assert(account, "Account wasn't found");
|
||||
|
||||
account.captureChange('universalExpireTimer');
|
||||
},
|
||||
|
||||
addDarkOverlay: () => {
|
||||
|
|
Loading…
Add table
Reference in a new issue