FIX: Old Upload#url scheme support for Upload.get_from_url.

This is for backwards compatibility purposes. Even if `Upload#url` has a
format that we don't recognize, we should still return the upload object
as long as the upload record is present.
This commit is contained in:
Guo Xiang Tan
2019-04-24 10:15:47 +08:00
parent 646cdfa449
commit a8baa6d9e7
2 changed files with 13 additions and 1 deletions

View File

@@ -26,7 +26,13 @@ module HasUrl
return if uri&.path.blank?
data = extract_url(uri.path)
return if data.blank?
if data.blank?
result = nil
result ||= self.find_by(url: uri.path)
return result
end
result = nil
if self.name == "Upload"