Fix poll issue

This commit is contained in:
Thomas 2020-05-03 11:37:40 +02:00
parent 6817607955
commit 6a443adf08

View file

@ -220,7 +220,7 @@ class Mastodon_api
if (isset($parameters['body']['poll']['options'])) {
$url .= strpos($url, '?') !== false ? '' : '?';
foreach ($parameters['body']['poll']['options'] as $key => $value) {
$url .= 'poll[options][]=' . $value . '&';
$url .= 'poll[options][]=' . urlencode($value) . '&';
}
$url = substr($url, 0, -1);