fix(fetcher): fix fetcher scraping logic

quora made a new change on their side which broke the previous fetcher logic

BREAKING CHANGE: old fetcher.js won't work as quora changed their html
This commit is contained in:
zyachel 2022-05-24 12:50:47 +05:30
parent 04fa753623
commit b11ceb4c33

View file

@ -28,7 +28,7 @@ const fetcher = async resourceStr => {
$('body')
.children('script')
.each((i, el) => {
if ($(el).html() === 'window.installSettings();')
if ($(el).html().includes('window.installSettings()'))
rawData = $(el)
.next()
.html()