Merge pull request #1616 from dpalou/MOBILE-2502
MOBILE-2502 course: Fix navigate to stealth modulesmain
commit
d360929e70
|
@ -398,9 +398,11 @@ export class CoreCourseProvider {
|
||||||
}).then((sections) => {
|
}).then((sections) => {
|
||||||
for (let i = 0; i < sections.length; i++) {
|
for (let i = 0; i < sections.length; i++) {
|
||||||
const section = sections[i];
|
const section = sections[i];
|
||||||
if (sectionId != null && !isNaN(sectionId) && sectionId != section.id) {
|
if (sectionId != null && !isNaN(sectionId) && section.id != CoreCourseProvider.STEALTH_MODULES_SECTION_ID &&
|
||||||
|
sectionId != section.id) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let j = 0; j < section.modules.length; j++) {
|
for (let j = 0; j < section.modules.length; j++) {
|
||||||
const module = section.modules[j];
|
const module = section.modules[j];
|
||||||
if (module.id == moduleId) {
|
if (module.id == moduleId) {
|
||||||
|
|
Loading…
Reference in New Issue