diff --git a/src/app/app-shared/app-configurations.js b/src/app/app-shared/app-configurations.js index 705012ea..4e0721eb 100644 --- a/src/app/app-shared/app-configurations.js +++ b/src/app/app-shared/app-configurations.js @@ -196,6 +196,7 @@ appShared.run([ $rootScope.translator = translatorService; $rootScope.errors = []; $rootScope.breadCrumbs = []; + $rootScope.globalSettings = localStorageService.get("globalSettings"); $rootScope.message = { title: "", content: "", diff --git a/src/app/app-shared/controllers/base-signalr-hub.js b/src/app/app-shared/controllers/base-signalr-hub.js index d333fb0f..ecbf6537 100644 --- a/src/app/app-shared/controllers/base-signalr-hub.js +++ b/src/app/app-shared/controllers/base-signalr-hub.js @@ -2,7 +2,7 @@ function BaseHub(scope) { scope.isLog = true; scope.connection = null; - scope.host = "/hub/"; + scope.host = "hub/"; scope.responses = []; scope.hubRequests = []; scope.rooms = [];