mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:54:16 +08:00
FIX: Don't raise an error if URL timesout.
This commit is contained in:
parent
a849959915
commit
b84e87dedd
|
@ -91,7 +91,7 @@ class TopicEmbed < ActiveRecord::Base
|
||||||
response = FetchResponse.new
|
response = FetchResponse.new
|
||||||
begin
|
begin
|
||||||
html = open(URI.encode(url), allow_redirections: :safe).read
|
html = open(URI.encode(url), allow_redirections: :safe).read
|
||||||
rescue OpenURI::HTTPError
|
rescue OpenURI::HTTPError, Net::OpenTimeout
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user