mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Fix nil error when trying to fetch key for signature verification (#17747)
This commit is contained in:
parent
642528f455
commit
883099f3c9
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ module JsonLdHelper
|
|||
end
|
||||
|
||||
def unsupported_uri_scheme?(uri)
|
||||
!uri.start_with?('http://', 'https://')
|
||||
uri.nil? || !uri.start_with?('http://', 'https://')
|
||||
end
|
||||
|
||||
def invalid_origin?(url)
|
||||
|
|
|
|||
Loading…
Reference in a new issue