mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-04 21:58:54 +01:00
Avoid double call of refresh at app startup
This commit is contained in:
parent
0e7a41dc99
commit
bcf8eb687a
2 changed files with 7 additions and 5 deletions
|
@ -76,9 +76,9 @@ angular.module('HomeController', ['matrixService', 'mFileInput', 'mFileUpload',
|
|||
return data;
|
||||
};
|
||||
|
||||
$scope.refresh = function() {
|
||||
var refresh = function() {
|
||||
// List all rooms joined or been invited to
|
||||
matrixService.rooms().then(
|
||||
matrixService.rooms(1,true).then(
|
||||
function(response) {
|
||||
var data = assignRoomAliases(response.data.rooms);
|
||||
$scope.feedback = "Success";
|
||||
|
@ -118,7 +118,7 @@ angular.module('HomeController', ['matrixService', 'mFileInput', 'mFileUpload',
|
|||
response.data.room_id);
|
||||
matrixService.createRoomIdToAliasMapping(
|
||||
response.data.room_id, response.data.room_alias);
|
||||
$scope.refresh();
|
||||
refresh();
|
||||
},
|
||||
function(error) {
|
||||
$scope.feedback = "Failure: " + error.data;
|
||||
|
@ -158,5 +158,7 @@ angular.module('HomeController', ['matrixService', 'mFileInput', 'mFileUpload',
|
|||
);
|
||||
};
|
||||
|
||||
$scope.refresh();
|
||||
$scope.onInit = function() {
|
||||
refresh();
|
||||
};
|
||||
}]);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div ng-controller="HomeController">
|
||||
<div ng-controller="HomeController" data-ng-init="onInit()">
|
||||
|
||||
<div id="page">
|
||||
<div id="wrapper">
|
||||
|
|
Loading…
Reference in a new issue