logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 3f07f1b2b18affd0c48f3673d124cfbea6b9e380
parent: 44245926f105e653cfe4fd3397b796df345023b5
Author: unarist <m.unarist@gmail.com>
Date:   Sun, 17 Sep 2017 20:51:34 +0900

Raise an error on getting activity uri for remote status (#4984)

We had returned `nil` for that case, but this raises an error instead, as a wrong usage of the method.
This method is currently only used in ActivitySerializer.

Diffstat:

Mapp/lib/activitypub/tag_manager.rb2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/lib/activitypub/tag_manager.rb b/app/lib/activitypub/tag_manager.rb @@ -37,7 +37,7 @@ class ActivityPub::TagManager end def activity_uri_for(target) - return nil unless %i(note comment activity).include?(target.object_type) && target.local? + raise ArgumentError, 'target must be a local activity' unless %i(note comment activity).include?(target.object_type) && target.local? activity_account_status_url(target.account, target) end