summaryrefslogtreecommitdiff
path: root/js/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-03-11 19:09:33 +0400
committerAndrew Dolgov <[email protected]>2014-03-11 19:09:33 +0400
commit5c812c2ea4f8fb60ccceb7dbf9ec06ff9372c077 (patch)
treec0bb175eb9f0659485a5df81be8c6cf9d335cc24 /js/functions.js
parent2ffe7a3b14caeb55a6338d769255cafa6f67d3c6 (diff)
Revert "add a less intimidating error message when backend times out and/or fails to return valid JSON"
This reverts commit 2ffe7a3b14caeb55a6338d769255cafa6f67d3c6.
Diffstat (limited to 'js/functions.js')
-rw-r--r--js/functions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/functions.js b/js/functions.js
index 93b037152..1ad15fcc6 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -833,7 +833,7 @@ function quickAddFeed() {
var reply = JSON.parse(transport.responseText);
} catch (e) {
Element.hide("feed_add_spinner");
- alert(__("Failed to parse output. This can indicate server timeout and/or network issues. Backend output was logged to the browser console."));
+ alert(__("Failed to parse output. This can indicate server timeout and/or network issues. Backend output was logged to browser console."));
console.log('quickAddFeed, backend returned:' + transport.responseText);
return;
}