mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
BF: Do a pagination when opening a room from an invitation
This commit is contained in:
parent
c58eb0d5a3
commit
d170fbdb9f
@ -715,13 +715,16 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
|
|||||||
// The room members is available in the data fetched by initialSync
|
// The room members is available in the data fetched by initialSync
|
||||||
if ($rootScope.events.rooms[$scope.room_id]) {
|
if ($rootScope.events.rooms[$scope.room_id]) {
|
||||||
|
|
||||||
// There is no need to do a 1st pagination (initialSync provided enough to fill a page)
|
var messages = $rootScope.events.rooms[$scope.room_id].messages;
|
||||||
if ($rootScope.events.rooms[$scope.room_id].messages.length) {
|
|
||||||
$scope.state.first_pagination = false;
|
if (0 === messages.length
|
||||||
|
|| (1 === messages.length && "m.room.member" === messages[0].type && "invite" === messages[0].content.membership && $scope.state.user_id === messages[0].state_key)) {
|
||||||
|
// If we just joined a room, we won't have this history from initial sync, so we should try to paginate it anyway
|
||||||
|
$scope.state.first_pagination = true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// except if we just joined a room, we won't have this history from initial sync, so we should try to paginate it anyway
|
// There is no need to do a 1st pagination (initialSync provided enough to fill a page)
|
||||||
$scope.state.first_pagination = true;
|
$scope.state.first_pagination = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
var members = $rootScope.events.rooms[$scope.room_id].members;
|
var members = $rootScope.events.rooms[$scope.room_id].members;
|
||||||
|
Loading…
Reference in New Issue
Block a user