diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-05 16:56:50 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-05 16:56:50 +0200 |
commit | 35014788282f43ba8a6d6da414dced5694027256 (patch) | |
tree | a19bcbd4051ab1145ab9da816c8611d553e4f0e6 /webclient/room | |
parent | Display ban & kick reason (diff) | |
download | synapse-35014788282f43ba8a6d6da414dced5694027256.tar.xz |
BF: Make /unban work again
Diffstat (limited to 'webclient/room')
-rw-r--r-- | webclient/room/room-controller.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/room/room-controller.js b/webclient/room/room-controller.js index b9ba23dc48..5a2f06d8ee 100644 --- a/webclient/room/room-controller.js +++ b/webclient/room/room-controller.js @@ -351,7 +351,7 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput']) var matches = args.match(/^(\S+)$/); if (matches) { // Reset the user membership to "leave" to unban him - promise = matrixService.setMembership($scope.room_id, args, "leave"); + promise = matrixService.setMembership($scope.room_id, matches[1], "leave"); } else { $scope.feedback = "Usage: /unban <userId>"; |