MOBILE-4470 h5pactivity: Fix wrong state loaded after synchronize
parent
1c6551a6e0
commit
248b74d5c8
|
@ -241,6 +241,7 @@ export class AddonModH5PActivityIndexComponent extends CoreCourseModuleMainActiv
|
|||
protected async loadContentState(): Promise<void> {
|
||||
if (!this.h5pActivity || !this.accessInfo || !AddonModH5PActivity.isSaveStateEnabled(this.h5pActivity, this.accessInfo)) {
|
||||
this.saveStateEnabled = false;
|
||||
this.contentState = undefined;
|
||||
|
||||
return;
|
||||
}
|
||||
|
@ -260,6 +261,8 @@ export class AddonModH5PActivityIndexComponent extends CoreCourseModuleMainActiv
|
|||
);
|
||||
|
||||
if (contentState === null) {
|
||||
this.contentState = undefined;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue