From 77c3efde20fb2ab06abdd071110c0653a9daba8e Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sun, 10 Mar 2019 20:44:43 -0700 Subject: [PATCH] This should be a warning, not an error. --- src/platform/$.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/$.coffee b/src/platform/$.coffee index dd961b27a..456493113 100644 --- a/src/platform/$.coffee +++ b/src/platform/$.coffee @@ -72,7 +72,7 @@ $.ajax = do -> $.extend r, options $.extend r.upload, upCallbacks # connection error or content blocker - $.on r, 'error', -> (c.error "4chan X failed to load: #{url}" unless r.status) + $.on r, 'error', -> (c.warn "4chan X failed to load: #{url}" unless r.status) r.send form catch err # XXX Some content blockers in Firefox (e.g. Adblock Plus and NoScript) throw an exception instead of simulating a connection error.