Don't store URL with hashtags / OStatus-Diaspora-Improvements

This commit is contained in:
Michael 2020-04-19 07:24:36 +00:00
parent ea60660c6d
commit 66f5e7c0f8
3 changed files with 5 additions and 1 deletions

View file

@ -94,7 +94,7 @@ class Tag
if (empty($cid)) {
$fields = ['name' => substr($name, 0, 96), 'url' => ''];
if (!empty($url) && ($url != $name)) {
if (($type != Tag::HASHTAG) && !empty($url) && ($url != $name)) {
$fields['url'] = strtolower($url);
}