Browse Source

Fix a bear check when the activity object is nil (#14981)

master
Takeshi Umeda 3 years ago
committed by GitHub
parent
commit
b4c4af18dc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/lib/activitypub/activity.rb

+ 1
- 1
app/lib/activitypub/activity.rb View File

@ -74,7 +74,7 @@ class ActivityPub::Activity
@object_uri ||= begin
str = value_or_id(@object)
if str.start_with?('bear:')
if str&.start_with?('bear:')
Addressable::URI.parse(str).query_values['u']
else
str

Loading…
Cancel
Save