Skip to content

Commit

Permalink
Merge pull request #443 from intersective/bugfix/CORE-6617/chat-messa…
Browse files Browse the repository at this point in the history
…ges-not-appearing-in-real-time

[CORE-6617] Chat messages not appearing in real time
  • Loading branch information
sasangachathumal authored Jun 17, 2024
2 parents 83a79af + 7c55f8d commit cd6a769
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/shared/pusher/pusher.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ export class PusherService {
return this.pusher;
}
// prevent pusher auth before user authenticated (skip silently)
const { apikey, timelineId } = this.storage.getUser();
const apikey = this.storage.getUser();
const timelineId = this.storage.get('experience').timelineId;
if (!apikey || !timelineId) {
return this.pusher;
}
Expand Down

0 comments on commit cd6a769

Please sign in to comment.