summary refs log tree commit diff
path: root/webclient/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'webclient/app.js')
-rw-r--r--webclient/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webclient/app.js b/webclient/app.js
index e5d8513944..6cd50c5e54 100644
--- a/webclient/app.js
+++ b/webclient/app.js
@@ -45,7 +45,7 @@ matrixWebClient.config(['$routeProvider', '$provide', '$httpProvider',
                 templateUrl: 'room/room.html',
                 controller: 'RoomController'
             }).
-            when('/home', {
+            when('/', {
                 templateUrl: 'home/home.html',
                 controller: 'HomeController'
             }).
@@ -58,7 +58,7 @@ matrixWebClient.config(['$routeProvider', '$provide', '$httpProvider',
                 controller: 'UserController'
             }).
             otherwise({
-                redirectTo: '/home'
+                redirectTo: '/'
             });
             
         $provide.factory('AccessTokenInterceptor', ['$q', '$rootScope',