Fix Performance/DeletePrefix cop (#24796)

This commit is contained in:
Matt Jankowski
2023-05-02 15:07:45 -04:00
committed by GitHub
parent 05e3abe9d9
commit 668a19a2f3
10 changed files with 9 additions and 24 deletions

View File

@ -9,7 +9,7 @@ class IntentsController < ApplicationController
if uri.scheme == 'web+mastodon'
case uri.host
when 'follow'
return redirect_to authorize_interaction_path(uri: uri.query_values['uri'].gsub(/\Aacct:/, ''))
return redirect_to authorize_interaction_path(uri: uri.query_values['uri'].delete_prefix('acct:'))
when 'share'
return redirect_to share_path(text: uri.query_values['text'])
end