Room topic: if the request fails, show the error in the feedback

This commit is contained in:
Emmanuel ROHEE 2014-09-11 11:53:37 +02:00
parent af44e9556d
commit 14a9652324

View file

@ -67,7 +67,14 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
},
updateTopic: function() {
console.log("Updating topic to "+$scope.topic.newTopicText);
matrixService.setTopic($scope.room_id, $scope.topic.newTopicText);
matrixService.setTopic($scope.room_id, $scope.topic.newTopicText).then(
function() {
},
function(error) {
$scope.feedback = "Request failed: " + error.data.error;
}
);
$scope.topic.isEditing = false;
},
cancelEdit: function() {