diff --git a/src/stores/PresenceStore.js b/src/stores/PresenceStore.js index dc758d3c3..15fc9f124 100644 --- a/src/stores/PresenceStore.js +++ b/src/stores/PresenceStore.js @@ -12,7 +12,7 @@ class PresenceStore extends DataStore { add(data, cache) { const existing = this.get(data.user.id); - return existing ? existing.patch(data) : super.add(data, cache); + return existing ? existing.patch(data) : super.add(data, cache, { id: data.user.id }); } /**