Merge pull request #118 from lbryio/bug-report

Update Report Bug page
This commit is contained in:
Jeremy Kauffman 2017-01-02 15:47:21 -05:00 committed by GitHub
commit 2c760ca2dd
2 changed files with 3 additions and 4 deletions

View file

@ -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);
}

View file

@ -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({