fix: various small fixes (#3580)

This commit is contained in:
Dag 2023-07-31 20:43:18 +02:00 committed by GitHub
parent 8b6eecea25
commit 7e4807530e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 35 additions and 14 deletions

View file

@ -34,6 +34,9 @@ class TikTokBridge extends BridgeAbstract
$this->feedName = htmlspecialchars_decode($title);
$var = $html->find('script[id=SIGI_STATE]', 0);
if (!$var) {
throw new \Exception('Unable to find tiktok user data for ' . $this->processUsername());
}
$SIGI_STATE_RAW = $var->innertext;
$SIGI_STATE = Json::decode($SIGI_STATE_RAW, false);