mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-17 23:11:16 +02:00
fix(TwitterBridge): remove ampersand from screen name, api dont like it (#3388)
This commit is contained in:
@@ -231,7 +231,9 @@ EOD
|
||||
$cache->purgeCache(60 * 60 * 3); // 3h
|
||||
$api = new TwitterClient($cache);
|
||||
|
||||
$data = $api->fetchUserTweets($this->getInput('u'));
|
||||
$screenName = $this->getInput('u');
|
||||
$screenName = ltrim($screenName, '@');
|
||||
$data = $api->fetchUserTweets($screenName);
|
||||
break;
|
||||
|
||||
case 'By keyword or hashtag':
|
||||
|
Reference in New Issue
Block a user