shihabmridha / educative.io-downloader

Free Palestine. 📖 This tool is to download course from educative.io for offline usage. It uses your login credentials and download the course.
218 stars 130 forks source link

downloadAllCourses not working anymore? #61

Open minyoungan opened 4 years ago

minyoungan commented 4 years ago

downloadAllCourses:true used to work, but I think it stopped working. It only downloads What would be the best way to troubleshoot?

Found 9 courses to download on this page.
Found 30 courses to download on this page.
Found 30 courses to download on this page.
.
.
.
Found a total of 15 courses to download.
minyoungan commented 4 years ago

I fixed mine temporarly by removing the following if condition:

        if (availableCourse.discounted_price === 0.0 || availableCourse.owned_by_reader) {
            COURSE_URL_SLUG_LIST.push(availableCourse.course_url_slug);
         }

to

        COURSE_URL_SLUG_LIST.push(availableCourse.course_url_slug);