mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-04 13:37:39 +03:00
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:
parent
97f39c8340
commit
fb7d8034fe
1 changed files with 2 additions and 2 deletions
|
@ -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];
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue