Procházet zdrojové kódy

dashboard: Fix historical version compatibility problem for auth check via localStorage (#1473)

master
cdfive GitHub před 4 roky
rodič
revize
46076b34aa
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
3 změnil soubory, kde provedl 11 přidání a 3 odebrání
  1. +9
    -1
      sentinel-dashboard/src/main/webapp/resources/app/scripts/directives/header/header.js
  2. +1
    -1
      sentinel-dashboard/src/main/webapp/resources/dist/js/app.js
  3. +1
    -1
      sentinel-dashboard/src/main/webapp/resources/dist/js/app.vendor.js

+ 9
- 1
sentinel-dashboard/src/main/webapp/resources/app/scripts/directives/header/header.js Zobrazit soubor

@@ -27,7 +27,15 @@ angular.module('sentinelDashboardApp')
}
});
} else {
handleLogout($scope, JSON.parse($window.localStorage.getItem("session_sentinel_admin")).id)
try {
var id = JSON.parse($window.localStorage.getItem("session_sentinel_admin")).id;
handleLogout($scope, id);
} catch (e) {
// Historical version compatibility processing, fixes issue-1449
// If error happens while parsing, remove item in localStorage and redirect to login page.
$window.localStorage.removeItem("session_sentinel_admin");
$state.go('login');
}
}

function handleLogout($scope, id) {


+ 1
- 1
sentinel-dashboard/src/main/webapp/resources/dist/js/app.js
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 1
- 1
sentinel-dashboard/src/main/webapp/resources/dist/js/app.vendor.js
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


Načítá se…
Zrušit
Uložit