aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/Http/Timeline.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-08-11 18:22:43 +0800
committerGitHub <noreply@github.com>2020-08-11 18:22:43 +0800
commit2de24db92e892c6e3f18d9f5f05e8f3b7aba5c9e (patch)
tree56115decfb5e7e7e96c1d84161d7e7c920ce8cff /Timeline/Models/Http/Timeline.cs
parent06e79c99bbc810f16058b35f1c88c23148bf8e57 (diff)
parent12b5ecddb47e50c9f4597553a795c68b09acaddb (diff)
downloadtimeline-2de24db92e892c6e3f18d9f5f05e8f3b7aba5c9e.tar.gz
timeline-2de24db92e892c6e3f18d9f5f05e8f3b7aba5c9e.tar.bz2
timeline-2de24db92e892c6e3f18d9f5f05e8f3b7aba5c9e.zip
Merge pull request #146 from crupest/fix-141
Fix #141 .
Diffstat (limited to 'Timeline/Models/Http/Timeline.cs')
-rw-r--r--Timeline/Models/Http/Timeline.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/Models/Http/Timeline.cs b/Timeline/Models/Http/Timeline.cs
index 5404d561..52e26190 100644
--- a/Timeline/Models/Http/Timeline.cs
+++ b/Timeline/Models/Http/Timeline.cs
@@ -21,7 +21,7 @@ namespace Timeline.Models.Http
public TimelinePostContentInfo? Content { get; set; }
public bool Deleted { get; set; }
public DateTime Time { get; set; }
- public UserInfo Author { get; set; } = default!;
+ public UserInfo? Author { get; set; } = default!;
public DateTime LastUpdated { get; set; } = default!;
}