diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-05-21 21:20:42 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 21:20:42 -0500 |
commit | dd7164aac2e26426dbc82f213aa30249aae5638b (patch) | |
tree | 8af48dc7204f71c0283974a4f9010bb68459299c /app/lib/activitypub | |
parent | 9abf1ce535f48fd641b8bfb5083d6086a5d5cb0d (diff) |
handle tags with the old `:` scope delimiter but translate those to `.`
Diffstat (limited to 'app/lib/activitypub')
-rw-r--r-- | app/lib/activitypub/activity/create.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/activitypub/activity/create.rb b/app/lib/activitypub/activity/create.rb index a0cf03686..263dbbb87 100644 --- a/app/lib/activitypub/activity/create.rb +++ b/app/lib/activitypub/activity/create.rb @@ -179,7 +179,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity def process_hashtag(tag) return if tag['name'].blank? - hashtag = tag['name'].gsub(/\A#/, '').mb_chars.downcase + hashtag = tag['name'].gsub(/\A#/, '').gsub(':', '.').mb_chars.downcase return if !@options[:imported] && hashtag.starts_with?('self.', '_self.', 'local.', '_local.') |