From: Dessalines Date: Tue, 28 Jan 2020 13:47:37 +0000 (-0500) Subject: Add not throwing error on auth check for getPost and getCommunity. Fixes #475 X-Git-Url: http://these/git/%22%7Burl%7D/static/%7Bpost.ap_id%7D?a=commitdiff_plain;h=451dfe679a6d9cc882b949c7a48b466b0fd71c8c;p=lemmy.git Add not throwing error on auth check for getPost and getCommunity. Fixes #475 --- 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)); }