Use DurationInSeconds for expireTimer

This commit is contained in:
Fedor Indutny 2022-11-16 12:18:02 -08:00 committed by GitHub
parent cf57c7aaf0
commit 6be69a7ba8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 411 additions and 216 deletions

View file

@ -1,12 +1,14 @@
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { DurationInSeconds } from './durations';
export const ITEM_NAME = 'universalExpireTimer';
export function get(): number {
return window.storage.get(ITEM_NAME) || 0;
export function get(): DurationInSeconds {
return DurationInSeconds.fromSeconds(window.storage.get(ITEM_NAME) || 0);
}
export function set(newValue: number | undefined): Promise<void> {
return window.storage.put(ITEM_NAME, newValue || 0);
export function set(newValue: DurationInSeconds | undefined): Promise<void> {
return window.storage.put(ITEM_NAME, newValue || DurationInSeconds.ZERO);
}