Fix redirect to external object when URL is missing or malformed (#36347)
This commit is contained in:
parent
1561517387
commit
80c8a84740
@ -26,7 +26,7 @@ class PermalinkRedirector
|
|||||||
end
|
end
|
||||||
|
|
||||||
def redirect_path
|
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')
|
@path.delete_prefix('/deck') if @path.start_with?('/deck')
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user