diff options
author | crupest <crupest@outlook.com> | 2020-08-23 23:32:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-23 23:32:42 +0800 |
commit | e9e0888e9f8a204a29109cb1bb6950c1d72599d6 (patch) | |
tree | 1ca45c1c7f5655d820c4637e561f6a95d68af3bc /Timeline/ClientApp/src/app/http | |
parent | 07795ebbd2b2a48ab0cebe97b6d591d35ef0cd31 (diff) | |
parent | 06649bfa22589e0cbbf93c371e4a3cd645515e68 (diff) | |
download | timeline-e9e0888e9f8a204a29109cb1bb6950c1d72599d6.tar.gz timeline-e9e0888e9f8a204a29109cb1bb6950c1d72599d6.tar.bz2 timeline-e9e0888e9f8a204a29109cb1bb6950c1d72599d6.zip |
Merge pull request #151 from crupest/patch-posts
Patch post list instead of fetch the full one.
Diffstat (limited to 'Timeline/ClientApp/src/app/http')
-rw-r--r-- | Timeline/ClientApp/src/app/http/timeline.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/ClientApp/src/app/http/timeline.ts b/Timeline/ClientApp/src/app/http/timeline.ts index d8f0b49c..c4ebdee9 100644 --- a/Timeline/ClientApp/src/app/http/timeline.ts +++ b/Timeline/ClientApp/src/app/http/timeline.ts @@ -66,7 +66,7 @@ export interface HttpTimelineDeletedPostInfo { id: number;
time: Date;
lastUpdated: Date;
- author: HttpUser;
+ author?: HttpUser;
deleted: true;
}
|