mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +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')
|
||||
.children('script')
|
||||
.each((i, el) => {
|
||||
if ($(el).html().includes('window.installSettings()'))
|
||||
if ($(el).html().includes('window.setTimingData'))
|
||||
rawData = $(el)
|
||||
.next()
|
||||
.prev()
|
||||
.html()
|
||||
?.match(/"\{.*\}"/m)?.[0];
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue