MOBILE-2114 scorm: Fix offline data not detected on exit

main
Dani Palou 2019-02-07 14:00:34 +01:00
parent b7d56bf641
commit 2ec371bf0c
1 changed files with 3 additions and 1 deletions

View File

@ -442,7 +442,9 @@ export class AddonModScormPlayerPage implements OnInit, OnDestroy {
this.tocObserver && this.tocObserver.off();
this.launchNextObserver && this.launchNextObserver.off();
this.launchPrevObserver && this.launchPrevObserver.off();
this.goOfflineObserver && this.goOfflineObserver.off();
setTimeout(() => {
this.goOfflineObserver && this.goOfflineObserver.off();
}, 500);
// Unblock the SCORM so it can be synced.
this.syncProvider.unblockOperation(AddonModScormProvider.COMPONENT, this.scorm.id, 'player');