Merge pull request #2607 from NoelDeMartin/MOBILE-3523

MOBILE-3523 login: Fix application checks
main
Dani Palou 2020-11-12 16:24:51 +01:00 committed by GitHub
commit 5977cab51a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ export class CoreLoginSitePage {
* @return Promise resolved after logging in.
*/
protected async login(response: CoreSiteCheckResponse, foundSite?: CoreLoginSiteInfoExtended): Promise<void> {
return this.sitesProvider.checkApplication(response).then(() => {
return this.sitesProvider.checkApplication(response.config).then(() => {
this.domUtils.triggerFormSubmittedEvent(this.formElement, true);