mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-27 11:53:23 +01:00
Use DurationInSeconds for expireTimer
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user