diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2022-06-28 12:48:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 06:44:46 +0000 |
commit | bf851133aea61eb9734894c84327f8b1bb143d2b (patch) | |
tree | c1aacae20e7685fa2edfe8162dd951c8425b4d67 /app/lib/extractor.rb | |
parent | 05e39dc6199c609d200d546fed8a6a560659aa06 (diff) | |
download | mastodon-rubocop-fixes.tar mastodon-rubocop-fixes.tar.gz mastodon-rubocop-fixes.tar.bz2 mastodon-rubocop-fixes.zip |
Fix all rubocop warningsrubocop-fixes
Diffstat (limited to 'app/lib/extractor.rb')
-rw-r--r-- | app/lib/extractor.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/lib/extractor.rb b/app/lib/extractor.rb index aea60dae5..41c444357 100644 --- a/app/lib/extractor.rb +++ b/app/lib/extractor.rb @@ -29,7 +29,7 @@ module Extractor text.scan(Account::MENTION_RE) do |screen_name, _| match_data = $LAST_MATCH_INFO - after = $' + after = Regexp.last_match.post_match unless Twitter::TwitterText::Regex[:end_mention_match].match?(after) _, domain = screen_name.split('@') @@ -64,7 +64,7 @@ module Extractor match_data = $LAST_MATCH_INFO start_position = match_data.char_begin(1) - 1 end_position = match_data.char_end(1) - after = $' + after = Regexp.last_match.post_match if %r{\A://}.match?(after) hash_text.match(/(.+)(https?\Z)/) do |matched| |