mirror of
https://github.com/discourse/discourse.git
synced 2025-04-01 10:15:54 +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…
x
Reference in New Issue
Block a user