aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_reminders/src/shared/utils.ts
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2023-08-03 16:10:07 -0700
committerChristopher Ng <chrng8@gmail.com>2023-08-09 10:41:18 -0700
commit07c0f7e25b011502fa5d5cac24ff6c18084ae2c7 (patch)
tree6574be3db225e19d7aeed2bfa6d8c3a41a827f68 /apps/files_reminders/src/shared/utils.ts
parent5e4881b90c37d676f904b49c585f74fe58ad93bd (diff)
downloadnextcloud-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.ts2
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()
},