From 57304ac375e905fb0efa1b98a6100828bdbef2e1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 1 Nov 2016 16:58:13 +0100 Subject: Catch 404 errors when downloading remote media, add screenshot to landing page --- app/models/account.rb | 2 ++ app/models/media_attachment.rb | 2 ++ 2 files changed, 4 insertions(+) (limited to 'app/models') diff --git a/app/models/account.rb b/app/models/account.rb index 8542852bc..0a6ba182b 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -112,6 +112,8 @@ class Account < ApplicationRecord def avatar_remote_url=(url) self.avatar = URI.parse(url) unless self[:avatar_remote_url] == url self[:avatar_remote_url] = url + rescue OpenURI::HTTPError + # end def object_type diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb index 55eabc226..a740792f2 100644 --- a/app/models/media_attachment.rb +++ b/app/models/media_attachment.rb @@ -20,6 +20,8 @@ class MediaAttachment < ApplicationRecord def file_remote_url=(url) self.file = URI.parse(url) + rescue OpenURI::HTTPError + # end def image? -- cgit