diff --git a/js/functions.js b/js/functions.js
index 1ad15fcc6..9e40ecf51 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -88,9 +88,6 @@ function exception_error(location, e, ext_info) {
content += "
";
- content += " ";
content += "";
@@ -103,20 +100,6 @@ function exception_error(location, e, ext_info) {
id: "exceptionDlg",
title: "Unhandled exception",
style: "width: 600px",
- report: function() {
- if (confirm(__("Are you sure to report this exception to tt-rss.org? The report will include your browser information. Your IP would be saved in the database."))) {
-
- document.forms['exceptionForm'].params.value = $H({
- browserName: navigator.appName,
- browserVersion: navigator.appVersion,
- browserPlatform: navigator.platform,
- browserCookies: navigator.cookieEnabled,
- }).toQueryString();
-
- document.forms['exceptionForm'].submit();
-
- }
- },
content: content});
dialog.show();