diff --git a/web/modules/custom/blog/src/Service/PostPusher/IftttPostPusher.php b/web/modules/custom/blog/src/Service/PostPusher/IftttPostPusher.php index c8f972735..200eac1b9 100644 --- a/web/modules/custom/blog/src/Service/PostPusher/IftttPostPusher.php +++ b/web/modules/custom/blog/src/Service/PostPusher/IftttPostPusher.php @@ -34,9 +34,8 @@ final class IftttPostPusher extends HttpPostPusher { $this->client->post($url, [ 'form_params' => [ - 'value1' => $this->t('Blogged: @text', [ - '@text' => $post->toTweet(), - ]), + 'value1' => $this->t('Blogged: @text', ['@text' => $post->toTweet()]) + ->render(), ], ]); }