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:
zyachel 2022-10-14 23:16:16 +05:30
parent de828d07a9
commit 5e1d60525e

View file

@ -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];