diff --git a/build/DAEMON_URL b/build/DAEMON_URL index 19a28c9a8..a30ad8609 100644 --- a/build/DAEMON_URL +++ b/build/DAEMON_URL @@ -1 +1 @@ -https://github.com/lbryio/lbry/releases/download/v0.10.0rc15/lbrynet-daemon-v0.10.0rc15-OSNAME.zip +https://github.com/lbryio/lbry/releases/download/v0.10.1rc1/lbrynet-daemon-v0.10.1rc1-OSNAME.zip diff --git a/ui/js/page/settings.js b/ui/js/page/settings.js index d05be08fe..01c1cca70 100644 --- a/ui/js/page/settings.js +++ b/ui/js/page/settings.js @@ -22,7 +22,7 @@ var SettingsPage = React.createClass({ this.setDaemonSetting('run_on_startup', event.target.checked); }, onShareDataChange: function (event) { - this.setDaemonSetting('share_debug_info', event.target.checked); + this.setDaemonSetting('share_usage_stats', event.target.checked); }, onDownloadDirChange: function(event) { this.setDaemonSetting('download_directory', event.target.value); @@ -189,7 +189,7 @@ var SettingsPage = React.createClass({ <div className="card__content"> <FormRow type="checkbox" onChange={this.onShareDataChange} - defaultChecked={this.state.daemonSettings.share_debug_info} + defaultChecked={this.state.daemonSettings.share_usage_stats} label="Help make LBRY better by contributing diagnostic data about my usage" /> </div> </section>