Merge pull request '[pumpio] Remove two superfluous parentheses' (#1565) from MrPetovan/friendica-addons:bug/1564-fix into 2024.09-rc

Reviewed-on: friendica/friendica-addons#1565
This commit is contained in:
heluecht 2024-11-17 19:19:23 +01:00
commit e133a693c2

View file

@ -412,7 +412,7 @@ function pumpio_send(array &$b)
Logger::notice('pumpio_send: receiver ', $receiver);
if (!count($receiver) && ($b['private'] == Item::PRIVATE) || !strstr($b['postopts'], 'pumpio'))) {
if (!count($receiver) && ($b['private'] == Item::PRIVATE) || !strstr($b['postopts'], 'pumpio')) {
return;
}
@ -1319,7 +1319,7 @@ function pumpio_getreceiver(array $b)
{
$receiver = [];
if ($b['private'] != Item::PRIVATE)) {
if ($b['private'] != Item::PRIVATE) {
if (!strstr($b['postopts'], 'pumpio')) {
return $receiver;
}