diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-27 14:51:59 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-27 14:52:07 +0100 |
commit | 1d9d287c7c9e1149561e2e4b9623a74823f441db (patch) | |
tree | 36b8ec704a7a7f4e8413bb8cc877f2a4a9002142 /webclient | |
parent | fix joining rooms on webclient (diff) | |
download | synapse-1d9d287c7c9e1149561e2e4b9623a74823f441db.tar.xz |
Renamed /public/rooms to /publicRooms
Diffstat (limited to 'webclient')
-rw-r--r-- | webclient/components/matrix/matrix-service.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/components/matrix/matrix-service.js b/webclient/components/matrix/matrix-service.js index e467ca40da..aad0960db9 100644 --- a/webclient/components/matrix/matrix-service.js +++ b/webclient/components/matrix/matrix-service.js @@ -235,7 +235,7 @@ angular.module('matrixService', []) // get a list of public rooms on your home server publicRooms: function() { - var path = "/public/rooms" + var path = "/publicRooms" return doRequest("GET", path); }, |