From a7da0be9688b8c46cb6327b27cb4a1fcf116a62d Mon Sep 17 00:00:00 2001 From: Tim Siegler Date: Mon, 17 May 2021 11:47:20 +0200 Subject: [PATCH] Add timezone --- src/common/timeUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/timeUtils.js b/src/common/timeUtils.js index 816e93a..e512716 100644 --- a/src/common/timeUtils.js +++ b/src/common/timeUtils.js @@ -1,7 +1,7 @@ const moment = require('moment'); function currentTimestamp() { - return moment(new Date()).format('DD.MM.YYYY - HH:mm:ss'); + return moment(new Date()).format('DD.MM.YYYY - HH:mm:ss (Z)'); } function formatSeconds(sec) {