fix(fetcher): fix fetcher logic

Quora changed their HTML again

BREAKING CHANGE: Quora changed their HTML. Previous fetcher logic won't work!

fix https://github.com/zyachel/quetre/issues/10
This commit is contained in:
zyachel 2022-06-24 17:23:23 +05:30
parent 97f39c8340
commit fb7d8034fe

View file

@ -28,9 +28,9 @@ const fetcher = async resourceStr => {
$('body') $('body')
.children('script') .children('script')
.each((i, el) => { .each((i, el) => {
if ($(el).html().includes('window.installSettings()')) if ($(el).html().includes('window.setTimingData'))
rawData = $(el) rawData = $(el)
.next() .prev()
.html() .html()
?.match(/"\{.*\}"/m)?.[0]; ?.match(/"\{.*\}"/m)?.[0];
}); });