Issue 8254 More length shortenings

This commit is contained in:
Michael 2020-03-25 23:18:07 +00:00
parent 85b0b676c1
commit 6f22e3909b
3 changed files with 3 additions and 3 deletions

View file

@ -87,7 +87,7 @@ class ParseUrl
DBA::insert(
'parsed_url',
[
'url' => Strings::normaliseLink($url), 'guessing' => !$no_guessing,
'url' => substr(Strings::normaliseLink($url), 0, 255), 'guessing' => !$no_guessing,
'oembed' => $do_oembed, 'content' => serialize($data),
'created' => DateTimeFormat::utcNow()
],