aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/Http
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
commit8999e174b984938760b020e08b9b9d1e886a6941 (patch)
tree20bfb96ab9935d96d5ea15b2fb89348bcd941ebf /Timeline/Models/Http
parentd529b53530270cd7c5d9a90ebcb11e49f7b1eb0d (diff)
parented0e023e2eb2cc297ea0d60ea3f20c12ad83cfa8 (diff)
downloadtimeline-8999e174b984938760b020e08b9b9d1e886a6941.tar.gz
timeline-8999e174b984938760b020e08b9b9d1e886a6941.tar.bz2
timeline-8999e174b984938760b020e08b9b9d1e886a6941.zip
Merge pull request #146 from crupest/fix-141
Fix #141 .
Diffstat (limited to 'Timeline/Models/Http')
-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!;
}