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

pull/722/head
Dessalines 5 years ago
parent a81df1537d
commit 451dfe679a

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

Loading…
Cancel
Save