1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-04 07:37:27 +02:00

[TwitterBridge] URL to js file with apikey changed (#1698)

Fixes #1697
This commit is contained in:
triatic
2020-08-12 06:32:34 +01:00
committed by GitHub
parent be089702f0
commit 268ddf1382

View File

@@ -383,6 +383,10 @@ EOD;
$jsMainRegex = '/(https:\/\/abs\.twimg\.com\/responsive-web\/web_legacy\/main\.[^\.]+\.js)/m'; $jsMainRegex = '/(https:\/\/abs\.twimg\.com\/responsive-web\/web_legacy\/main\.[^\.]+\.js)/m';
preg_match_all($jsMainRegex, $twitterPage, $jsMainMatches, PREG_SET_ORDER, 0); preg_match_all($jsMainRegex, $twitterPage, $jsMainMatches, PREG_SET_ORDER, 0);
} }
if (!$jsMainMatches) {
$jsMainRegex = '/(https:\/\/abs\.twimg\.com\/responsive-web\/client-web\/main\.[^\.]+\.js)/m';
preg_match_all($jsMainRegex, $twitterPage, $jsMainMatches, PREG_SET_ORDER, 0);
}
if (!$jsMainMatches) { if (!$jsMainMatches) {
returnServerError('Could not locate main.js link'); returnServerError('Could not locate main.js link');
} }