You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-28 05:03:59 +03:00
Fix currently_active event
Need === undefined here to check the presence of the field
This commit is contained in:
@@ -87,7 +87,7 @@ User.prototype.setPresenceEvent = function(event) {
|
|||||||
{
|
{
|
||||||
eventsToFire.push("User.displayName");
|
eventsToFire.push("User.displayName");
|
||||||
}
|
}
|
||||||
if (event.getContent().currently_active &&
|
if (event.getContent().currently_active !== undefined &&
|
||||||
event.getContent().currently_active !== this.currentlyActive)
|
event.getContent().currently_active !== this.currentlyActive)
|
||||||
{
|
{
|
||||||
eventsToFire.push("User.currentlyActive");
|
eventsToFire.push("User.currentlyActive");
|
||||||
|
|||||||
Reference in New Issue
Block a user