diff options
author | crupest <crupest@outlook.com> | 2020-08-11 16:19:46 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-11 16:19:46 +0800 |
commit | ef734ef7e819bb6aa038e435e8468b75caba20a4 (patch) | |
tree | 90841e79c59247d510101d227cd8e02010828a78 /Timeline/Services | |
parent | caa09ff7ce89088d2de0865c5141ab5f867b7b5c (diff) | |
download | timeline-ef734ef7e819bb6aa038e435e8468b75caba20a4.tar.gz timeline-ef734ef7e819bb6aa038e435e8468b75caba20a4.tar.bz2 timeline-ef734ef7e819bb6aa038e435e8468b75caba20a4.zip |
Migrate DateTimeOffset to DateTime.
Diffstat (limited to 'Timeline/Services')
-rw-r--r-- | Timeline/Services/UserService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/Services/UserService.cs b/Timeline/Services/UserService.cs index c186c170..d9b3da26 100644 --- a/Timeline/Services/UserService.cs +++ b/Timeline/Services/UserService.cs @@ -332,7 +332,7 @@ namespace Timeline.Services {
if (info != null)
{
- DateTimeOffset now = _clock.GetCurrentTime();
+ var now = _clock.GetCurrentTime();
bool updateLastModified = false;
var username = info.Username;
|