Merge pull request #12560 from HankG/mastodon-api-tag-names-with-case
Make tag 'Names' Field have case-sensitive version
This commit is contained in:
commit
26db8a71b0
|
@ -51,8 +51,8 @@ class Tag extends BaseDataTransferObject
|
||||||
*/
|
*/
|
||||||
public function __construct(BaseURL $baseUrl, array $tag, array $history = [], bool $following = false)
|
public function __construct(BaseURL $baseUrl, array $tag, array $history = [], bool $following = false)
|
||||||
{
|
{
|
||||||
$this->name = strtolower($tag['name']);
|
$this->name = $tag['name'];
|
||||||
$this->url = $baseUrl . '/search?tag=' . urlencode($this->name);
|
$this->url = $baseUrl . '/search?tag=' . urlencode(strtolower($this->name));
|
||||||
$this->history = $history;
|
$this->history = $history;
|
||||||
$this->following = $following;
|
$this->following = $following;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user