Fix performance regression in Account::Field#verifiable? (#8719)

* Fix performance regression in Account::Field#verifiable?

Regression from #8703

* Fix code style issue
th-downstream
Eugen Rochko 6 years ago committed by GitHub
parent d3105031f8
commit a7955d39ce

@ -323,7 +323,7 @@ class Account < ApplicationRecord
end
def verifiable?
value.present? && /\A#{FetchLinkCardService::URL_PATTERN}\z/ =~ value
value.present? && value.start_with?('http://', 'https://')
end
def mark_verified!

Loading…
Cancel
Save