diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-08-03 16:10:07 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-08-09 10:41:18 -0700 |
commit | 07c0f7e25b011502fa5d5cac24ff6c18084ae2c7 (patch) | |
tree | 6574be3db225e19d7aeed2bfa6d8c3a41a827f68 /apps/files_reminders/src/shared/utils.ts | |
parent | 5e4881b90c37d676f904b49c585f74fe58ad93bd (diff) | |
download | nextcloud-server-07c0f7e25b011502fa5d5cac24ff6c18084ae2c7.tar.gz nextcloud-server-07c0f7e25b011502fa5d5cac24ff6c18084ae2c7.zip |
enh: later today 3 hours later
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/files_reminders/src/shared/utils.ts')
-rw-r--r-- | apps/files_reminders/src/shared/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_reminders/src/shared/utils.ts b/apps/files_reminders/src/shared/utils.ts index 368c1db18c6..cb2beeb9215 100644 --- a/apps/files_reminders/src/shared/utils.ts +++ b/apps/files_reminders/src/shared/utils.ts @@ -36,7 +36,7 @@ export const getDateTime = (dateTime: DateTimePreset): Date => { const hour = moment().get('hour') const later = moment() .startOf('day') - .add(hour + 2, 'hour') + .add(hour + 3, 'hour') return later.toDate() }, |