Doing UserJoin on connect / reconnect.

This commit is contained in:
Dessalines 2020-02-02 16:37:57 -05:00
parent caba049da1
commit cd57e612c1

View File

@ -61,6 +61,9 @@ export class WebSocketService {
this.ws = new ReconnectingWebSocket(wsUri); this.ws = new ReconnectingWebSocket(wsUri);
this.ws.onopen = () => { this.ws.onopen = () => {
console.log(`Connected to ${wsUri}`); console.log(`Connected to ${wsUri}`);
if (UserService.Instance.user) {
this.userJoin();
}
}; };
this.subject = Observable.create((obs: any) => { this.subject = Observable.create((obs: any) => {
@ -68,10 +71,6 @@ export class WebSocketService {
obs.next(JSON.parse(e.data)); obs.next(JSON.parse(e.data));
}; };
}).pipe(share()); }).pipe(share());
if (UserService.Instance.user) {
this.userJoin();
}
} }
public static get Instance() { public static get Instance() {