1
0
Fork 0
forked from gitea/nas

Merge commit 'e6591bf322' into kb-draft-15.13-lts

This commit is contained in:
KMY 2025-05-07 07:51:35 +09:00
commit 8361a857ff
18 changed files with 120 additions and 35 deletions

View file

@ -30,7 +30,10 @@ class ActivityPub::Parser::StatusParser
end
def url
url_to_href(@object['url'], 'text/html') if @object['url'].present?
return if @object['url'].blank?
url = url_to_href(@object['url'], 'text/html')
url unless unsupported_uri_scheme?(url)
end
def text