MOBILE-3320 database: Fix advanced search entries

main
Noel De Martin 2021-07-06 10:57:33 +02:00
parent 4c870c072c
commit fd49ee7057
1 changed files with 5 additions and 3 deletions

View File

@ -498,9 +498,11 @@ export class AddonModDataIndexComponent extends CoreCourseModuleMainActivityComp
};
// Try to find page number and offset of the entry.
const pageXOffset = this.entries.findIndex((entry) => entry.id == entryId);
if (pageXOffset >= 0) {
params.offset = this.search.page * AddonModDataProvider.PER_PAGE + pageXOffset;
if (!this.search.searching) {
const pageXOffset = this.entries.findIndex((entry) => entry.id == entryId);
if (pageXOffset >= 0) {
params.offset = this.search.page * AddonModDataProvider.PER_PAGE + pageXOffset;
}
}
CoreNavigator.navigateToSitePath(