update twister-php api

This commit is contained in:
ghost 2023-12-22 04:31:28 +02:00
parent dd0b3e7eaf
commit 9ba612c5ac
2 changed files with 2 additions and 24 deletions

View File

@ -9,6 +9,6 @@
}
},
"require": {
"twisterarmy/twister": "^1.0"
"twisterarmy/twister": "^1.1"
}
}

View File

@ -164,28 +164,6 @@ foreach ($config->feed as $feed)
// Send each message to the twister account
foreach ($query->fetchAll() as $queue)
{
// Get post k
if (null === $posts = $twister->getPosts([$feed->target], 1))
{
echo sprintf(
_('Could not receive twister posts for "%s" %s'),
$feed->target,
PHP_EOL
);
continue;
}
if (isset($posts['result'][0]['userpost']['k']))
{
$k = (int) $posts['result'][0]['userpost']['k'] + 1;
}
else
{
$k = 1; // initial post
}
// Apply replacements
$message = str_replace(
$search,
@ -203,8 +181,8 @@ foreach ($config->feed as $feed)
$twister->newPostMessage(
$feed->target,
$k,
$message,
null,
$errors
);