Merge remote-tracking branch 'origin/offline-login' into offline-login
This commit is contained in:
commit
c5038dd4c1
@ -77,7 +77,8 @@ function showMainUI(data){
|
||||
|
||||
// If this is enabled in a development environment we'll get ratelimited.
|
||||
// The relaunch frequency is usually far too high.
|
||||
if(!isDev && isLoggedIn){
|
||||
//if(!isDev && isLoggedIn){
|
||||
if(isLoggedIn){
|
||||
validateSelectedAccount()
|
||||
}
|
||||
|
||||
@ -322,7 +323,7 @@ function refreshDistributionIndex(remote, onSuccess, onError){
|
||||
|
||||
async function validateSelectedAccount(){
|
||||
const selectedAcc = ConfigManager.getSelectedAccount()
|
||||
if(selectedAcc != null){
|
||||
if(selectedAcc != null && selectedAcc.type != 'offline'){
|
||||
const val = await AuthManager.validateSelected()
|
||||
if(!val){
|
||||
ConfigManager.removeAuthAccount(selectedAcc.uuid)
|
||||
|
Loading…
Reference in New Issue
Block a user