mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-13 07:49:29 +00:00
Fix redirect to external object when URL is missing or malformed (#36347)
This commit is contained in:
@@ -26,7 +26,7 @@ class PermalinkRedirector
|
||||
end
|
||||
|
||||
def redirect_path
|
||||
return ActivityPub::TagManager.instance.url_for(object) if object.present?
|
||||
return ActivityPub::TagManager.instance.url_for(object) || ActivityPub::TagManager.instance.uri_for(object) if object.present?
|
||||
|
||||
@path.delete_prefix('/deck') if @path.start_with?('/deck')
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user