Add not throwing error on auth check for getPost and getCommunity. Fixes #475

This commit is contained in:
Dessalines 2020-01-28 08:47:37 -05:00
parent a81df1537d
commit 451dfe679a
1 changed files with 2 additions and 2 deletions

View File

@ -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));
}