From defdbe3c1036d4eb7b7793d2143a30bc9ce8d778 Mon Sep 17 00:00:00 2001
From: Bernhard Posselt <nukeawhale@gmail.com>
Date: Thu, 15 Nov 2012 15:07:01 +0100
Subject: [PATCH] removed unneeded callback checks in routes_request that could
 potentially fail

---
 core/js/router.js | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/core/js/router.js b/core/js/router.js
index 77168e3302..3562785b34 100644
--- a/core/js/router.js
+++ b/core/js/router.js
@@ -1,6 +1,5 @@
 OC.router_base_url = OC.webroot + '/index.php/',
 OC.Router = {
-	loadedCallback: null,
 	// register your ajax requests to load after the loading of the routes
 	// has finished. otherwise you face problems with race conditions
 	registerLoadedCallback: function(callback){
@@ -11,9 +10,6 @@ OC.Router = {
 		success: function(jsondata) {
 			if (jsondata.status === 'success') {
 				OC.Router.routes = jsondata.data;
-				if(OC.Router.loadedCallback !== null){
-					OC.Router.loadedCallback();
-				}
 			}
 		}
 	}),
-- 
GitLab