[TwitterBridge] Fix noretweet for users (#1608)

This also removes spurious retweets.
This commit is contained in:
somini 2020-07-26 07:26:39 +01:00 committed by GitHub
parent d5a75a2545
commit 78facbcb83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 3 deletions

View File

@ -212,9 +212,9 @@ EOD
foreach($data->globalObjects->tweets as $tweet) {
// Skip retweets?
if($this->getInput('noretweet')
&& isset($tweet->retweeted_status_id_str)) {
/* Debug::log('>>> ' . json_encode($tweet)); */
// Skip spurious retweets
if (isset($tweet->retweeted_status_id_str) && substr($tweet->full_text, 0, 4) === 'RT @') {
continue;
}
@ -314,6 +314,11 @@ EOD;
}
}
break;
case 'By username':
if ($this->getInput('noretweet') && $item['username'] != $this->getInput('u')) {
continue 2; // switch + for-loop!
}
break;
default:
}