commit
f94719dac9
|
@ -179,10 +179,10 @@ export class CoreLoginHelperProvider {
|
|||
} else {
|
||||
this.goToSiteInitialPage();
|
||||
}
|
||||
}).catch((errorMessage) => {
|
||||
if (errorMessage) {
|
||||
}).catch((error) => {
|
||||
if (error) {
|
||||
// An error occurred, display the error and logout the user.
|
||||
this.domUtils.showErrorModal(errorMessage);
|
||||
this.treatUserTokenError(siteData.siteUrl, error);
|
||||
this.sitesProvider.logout();
|
||||
}
|
||||
}).finally(() => {
|
||||
|
@ -647,8 +647,8 @@ export class CoreLoginHelperProvider {
|
|||
|
||||
loginUrl += '&oauthsso=' + params.id;
|
||||
|
||||
if (this.appProvider.isLinux()) {
|
||||
// In Linux desktop apps, always use embedded browser.
|
||||
if (this.appProvider.isLinux() || this.appProvider.isMac()) {
|
||||
// In Linux and Mac desktop apps, always use embedded browser.
|
||||
this.utils.openInApp(loginUrl);
|
||||
} else {
|
||||
// Always open it in browser because the user might have the session stored in there.
|
||||
|
|
|
@ -140,13 +140,12 @@ export class CoreDomUtilsProvider {
|
|||
const readableSize = this.textUtils.bytesToSize(size.size, 2);
|
||||
|
||||
return this.showConfirm(this.translate.instant('core.course.confirmpartialdownloadsize', { size: readableSize }));
|
||||
} else if (size.size >= wifiThreshold || (this.appProvider.isNetworkAccessLimited() && size.size >= limitedThreshold)) {
|
||||
} else if (alwaysConfirm || size.size >= wifiThreshold ||
|
||||
(this.appProvider.isNetworkAccessLimited() && size.size >= limitedThreshold)) {
|
||||
message = message || 'core.course.confirmdownload';
|
||||
const readableSize = this.textUtils.bytesToSize(size.size, 2);
|
||||
|
||||
return this.showConfirm(this.translate.instant(message, { size: readableSize }));
|
||||
} else if (alwaysConfirm) {
|
||||
return this.showConfirm(this.translate.instant('core.areyousure'));
|
||||
}
|
||||
|
||||
return Promise.resolve();
|
||||
|
|
Loading…
Reference in New Issue