mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
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:
parent
04fa753623
commit
b11ceb4c33
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue