summaryrefslogtreecommitdiffstats
path: root/ui/src/services
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-01-28 08:47:37 -0500
committerDessalines <tyhou13@gmx.com>2020-01-28 08:47:37 -0500
commit451dfe679a6d9cc882b949c7a48b466b0fd71c8c (patch)
treeaf227987d978541c0e7ddba84b06209a0ea720d6 /ui/src/services
parenta81df1537dc2932c2af1931633eccb6b6b0a2ebc (diff)
Add not throwing error on auth check for getPost and getCommunity. Fixes #475
Diffstat (limited to 'ui/src/services')
-rw-r--r--ui/src/services/WebSocketService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/services/WebSocketService.ts b/ui/src/services/WebSocketService.ts
index 9f09e56a..83e9ef1e 100644
--- a/ui/src/services/WebSocketService.ts
+++ b/ui/src/services/WebSocketService.ts
@@ -130,12 +130,12 @@ export class WebSocketService {
}
public getPost(form: GetPostForm) {
- this.setAuth(form);
+ this.setAuth(form, false);
this.subject.next(this.wsSendWrapper(UserOperation.GetPost, form));
}
public getCommunity(form: GetCommunityForm) {
- this.setAuth(form);
+ this.setAuth(form, false);
this.subject.next(this.wsSendWrapper(UserOperation.GetCommunity, form));
}