mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
fix(fetcher.js): fix broken data fetching logic
quora shuffled their script tags again BREAKING CHANGE: previous versions won't work fix https://github.com/zyachel/quetre/issues/72
This commit is contained in:
parent
de828d07a9
commit
5e1d60525e
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ const fetcher = async resourceStr => {
|
|||
|
||||
// this logic is prone to breakage as Quora changes position of the script that includes answers.
|
||||
// Cur position: 4th from bottom.
|
||||
const rawData = $('body script:nth-last-child(4)')
|
||||
const rawData = $('body script:nth-last-child(3)')
|
||||
.html()
|
||||
?.match(/"\{.*\}"/m)?.[0];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue