mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-05 14:07:37 +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')
|
$('body')
|
||||||
.children('script')
|
.children('script')
|
||||||
.each((i, el) => {
|
.each((i, el) => {
|
||||||
if ($(el).html() === 'window.installSettings();')
|
if ($(el).html().includes('window.installSettings()'))
|
||||||
rawData = $(el)
|
rawData = $(el)
|
||||||
.next()
|
.next()
|
||||||
.html()
|
.html()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue