Fix redirect to external object when URL is missing or malformed (#36347)
This commit is contained in:
parent
6ae1b4fae9
commit
cb0065cfe9
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue