diff --git a/js/lbry.js b/js/lbry.js index e7a7dbd7a..5dbf338ae 100644 --- a/js/lbry.js +++ b/js/lbry.js @@ -386,10 +386,7 @@ lbry.getSessionInfo = function(callback) { } lbry.reportBug = function(message, callback) { - lbry.call('upload_log', { - name_prefix: 'report', - exclude_previous: false, - force: true, + lbry.call('report_bug', { message: message }, callback); } diff --git a/js/page/report.js b/js/page/report.js index 72eedf1a1..6cac655a7 100644 --- a/js/page/report.js +++ b/js/page/report.js @@ -1,4 +1,6 @@ import React from 'react'; +import {Link} from '../component/link.js'; +import Modal from '../component/modal.js'; import lbry from '../lbry.js'; var ReportPage = React.createClass({