Fix Layout/EmptyLineAfterGuardClause issues caused by merging an old PR (#27512)
This commit is contained in:
parent
fc7734df8d
commit
79a63201a9
|
@ -99,6 +99,7 @@ namespace :mastodon do
|
|||
prompt.error e.message
|
||||
unless prompt.yes?('Try again?')
|
||||
return prompt.warn 'Nothing saved. Bye!' unless prompt.yes?('Continue anyway?')
|
||||
|
||||
errors = true
|
||||
break
|
||||
end
|
||||
|
@ -141,8 +142,10 @@ namespace :mastodon do
|
|||
rescue => e
|
||||
prompt.error 'Redis connection could not be established with this configuration, try again.'
|
||||
prompt.error e.message
|
||||
|
||||
unless prompt.yes?('Try again?')
|
||||
return prompt.warn 'Nothing saved. Bye!' unless prompt.yes?('Continue anyway?')
|
||||
|
||||
errors = true
|
||||
break
|
||||
end
|
||||
|
@ -430,8 +433,10 @@ namespace :mastodon do
|
|||
rescue => e
|
||||
prompt.error 'E-mail could not be sent with this configuration, try again.'
|
||||
prompt.error e.message
|
||||
|
||||
unless prompt.yes?('Try again?')
|
||||
return prompt.warn 'Nothing saved. Bye!' unless prompt.yes?('Continue anyway?')
|
||||
|
||||
errors = true
|
||||
break
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue