diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-02-22 19:55:14 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-02-22 19:55:14 +0100 |
commit | 53ae431867cbb5f8c49f6123dcae530ee472ee71 (patch) | |
tree | aec77e4452971dec751b88607a49c247bbf5dbe7 /app/models | |
parent | 3202bdd74416035f81170e978129bbffb3151ed2 (diff) |
Skip remote media URLs that don't have a hostname
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/account.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index ed5c46197..469695acd 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -138,7 +138,7 @@ class Account < ApplicationRecord def avatar_remote_url=(url) parsed_url = URI.parse(url) - return if !%w(http https).include?(parsed_url.scheme) || self[:avatar_remote_url] == url + return if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.empty? || self[:avatar_remote_url] == url self.avatar = parsed_url self[:avatar_remote_url] = url |