ikeboy/pluralsight-scraper

Error: Protocol "blob:" not supported.

Om4ar opened this issue · 6 comments

Om4ar commented

scrapper return error Error: Protocol "blob:" not supported. Expected "https:"
and crash after

Can anybody confirm this issue?

Hello,
I confirm the issue

quick fix, line 93
course.src = result.replace('blob:', '');

files are empty btw :/

course.src = result.replace('blob:', '');
files are empty btw :/

As one would expect.
blob:// is referring to some form of client-side storage, its not an actual url.

I was surprised it wasn't like this before, but it does significantly complicate matters now that it is.

This is now fixed with the new version.