diff --git a/js/app.js b/js/app.js index 19c97994e..0bcbb883f 100644 --- a/js/app.js +++ b/js/app.js @@ -43,21 +43,10 @@ var App = React.createClass({ pageArgs: typeof val !== 'undefined' ? val : null, errorInfo: null, modal: null, - startNotice: null, updateUrl: null, isOldOSX: null, }; }, - componentDidMount: function() { - lbry.getStartNotice(function(notice) { - if (notice) { - this.setState({ - modal: 'startNotice', - startNotice: notice - }); - } - }); - }, componentWillMount: function() { document.addEventListener('unhandledError', (event) => { this.alertError(event.detail); @@ -212,9 +201,6 @@ var App = React.createClass({
{mainContent} - - {this.state.startNotice} -

Your version of LBRY is out of date and may be unreliable or insecure.

diff --git a/js/lbry.js b/js/lbry.js index 5dbf338ae..9563d4195 100644 --- a/js/lbry.js +++ b/js/lbry.js @@ -124,10 +124,6 @@ lbry.getDaemonStatus = function (callback) { lbry.call('daemon_status', {}, callback); }; -lbry.getStartNotice = function(callback) { - lbry.call('get_start_notice', {}, callback); -} - lbry.checkFirstRun = function(callback) { lbry.call('is_first_run', {}, callback); }