Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
c9ee9b45
Commit
c9ee9b45
authored
10 years ago
by
Emmanuel ROHEE
Browse files
Options
Downloads
Patches
Plain Diff
Fixed presence state update. Specifically, the current user was sometimes indicated as offline
parent
02f4e3b3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
webclient/room/room-controller.js
+23
-5
23 additions, 5 deletions
webclient/room/room-controller.js
with
23 additions
and
5 deletions
webclient/room/room-controller.js
+
23
−
5
View file @
c9ee9b45
...
...
@@ -201,9 +201,15 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
}
}
else
{
// selectively update membership else it will nuke the picture and displayname too :/
// selectively update membership
and presence
else it will nuke the picture and displayname too :/
var
member
=
$scope
.
members
[
target_user_id
];
member
.
content
.
membership
=
chunk
.
content
.
membership
;
member
.
membership
=
chunk
.
content
.
membership
;
if
(
"
state
"
in
chunk
.
content
)
{
member
.
presenceState
=
chunk
.
content
.
state
;
}
if
(
"
mtime_age
"
in
chunk
.
content
)
{
member
.
mtime_age
=
chunk
.
content
.
mtime_age
;
}
}
};
...
...
@@ -377,10 +383,22 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
// Make recents highlight the current room
$scope
.
recentsSelectedRoomID
=
$scope
.
room_id
;
// Get the up-to-date the current member list
matrixService
.
getMemberList
(
$scope
.
room_id
).
then
(
function
(
response
)
{
for
(
var
i
=
0
;
i
<
response
.
data
.
chunk
.
length
;
i
++
)
{
var
chunk
=
response
.
data
.
chunk
[
i
];
updateMemberList
(
chunk
);
updateMemberListPresenceAge
();
}
},
function
(
error
)
{
$scope
.
feedback
=
"
Failed get member list:
"
+
error
.
data
.
error
;
}
);
paginate
(
MESSAGES_PER_PAGINATION
);
updateMemberListPresenceAge
();
};
$scope
.
inviteUser
=
function
(
user_id
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment