aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/data/timeline.ts
diff options
context:
space:
mode:
Diffstat (limited to 'Timeline/ClientApp/src/app/data/timeline.ts')
-rw-r--r--Timeline/ClientApp/src/app/data/timeline.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/Timeline/ClientApp/src/app/data/timeline.ts b/Timeline/ClientApp/src/app/data/timeline.ts
index 0e11b4e7..3eda35f9 100644
--- a/Timeline/ClientApp/src/app/data/timeline.ts
+++ b/Timeline/ClientApp/src/app/data/timeline.ts
@@ -152,7 +152,7 @@ export class TimelineService {
try {
const httpTimeline = await getHttpTimelineClient().getTimeline(key);
- await userInfoService.saveUsers([
+ userInfoService.saveUsers([
httpTimeline.owner,
...httpTimeline.members,
]);
@@ -339,7 +339,7 @@ export class TimelineService {
userService.currentUser?.token
);
- await userInfoService.saveUsers(
+ userInfoService.saveUsers(
uniqBy(
httpPosts.map((post) => post.author),
"username"
@@ -368,7 +368,7 @@ export class TimelineService {
(p): p is HttpTimelinePostInfo => !p.deleted
);
- await userInfoService.saveUsers(
+ userInfoService.saveUsers(
uniqBy(
httpPosts
.map((post) => post.author)