We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fafb42 commit e731350Copy full SHA for e731350
src/Members.ts
@@ -52,7 +52,7 @@ class Members extends EventEmitter<MemberEventsMap> {
52
// Emit profileData updates only if they are different then the last held update.
53
// A locationUpdate is handled in Locations.
54
if (message.data.profileUpdate.id && this.lastMemberUpdate[connectionId] !== message.data.profileUpdate.id) {
55
- this.lastMemberUpdate[message.connectionId] = message.data.locationUpdate.id;
+ this.lastMemberUpdate[message.connectionId] = message.data.profileUpdate.id;
56
this.emit('update', memberUpdate);
57
}
58
0 commit comments