diff options
author | crupest <crupest@outlook.com> | 2020-08-11 17:59:44 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-11 17:59:44 +0800 |
commit | 7df5e63e8b2eaa5b4f83ee72a32eeedd480cde47 (patch) | |
tree | 77e56827955f1e84aaa0ccb8d36969818cfc1640 /Timeline/Services/Clock.cs | |
parent | 4685d69fe965b32438c399a4ad4a3deee9fb0a55 (diff) | |
download | timeline-7df5e63e8b2eaa5b4f83ee72a32eeedd480cde47.tar.gz timeline-7df5e63e8b2eaa5b4f83ee72a32eeedd480cde47.tar.bz2 timeline-7df5e63e8b2eaa5b4f83ee72a32eeedd480cde47.zip |
Post list modified since now consider username change. And make all datetime utc.
Diffstat (limited to 'Timeline/Services/Clock.cs')
-rw-r--r-- | Timeline/Services/Clock.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/Services/Clock.cs b/Timeline/Services/Clock.cs index 040f9304..4395edcd 100644 --- a/Timeline/Services/Clock.cs +++ b/Timeline/Services/Clock.cs @@ -23,7 +23,7 @@ namespace Timeline.Services public DateTime GetCurrentTime()
{
- return DateTime.Now;
+ return DateTime.UtcNow;
}
}
}
|