diff options
Diffstat (limited to 'hyperkitty/static/js/hyperkitty.js')
-rw-r--r-- | hyperkitty/static/js/hyperkitty.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hyperkitty/static/js/hyperkitty.js b/hyperkitty/static/js/hyperkitty.js index ee30c74..fc8e461 100644 --- a/hyperkitty/static/js/hyperkitty.js +++ b/hyperkitty/static/js/hyperkitty.js @@ -377,7 +377,9 @@ function update_thread_replies(url) { } }, error: function(jqXHR, textStatus, errorThrown) { - alert(jqXHR.responseText); + if (jqXHR.responseText !== "") { + alert(jqXHR.responseText); + } } }); } |