diff --git a/CHANGELOG.md b/CHANGELOG.md index 578fcb338..7641950bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,7 @@ Web UI version numbers should always match the corresponding version of LBRY App * Tiles will no longer be blurry on hover (Windows only bug) * Removed placeholder values from price selection form fields, which was causing confusion that these were real values (#426) * Fixed showing "other currency" help tip in publish form, which was caused due to not "setting" state for price - * Public page now properly checks for all required fields are filled + * Publish page now properly checks for all required fields are filled * Fixed pagination styling for pages > 5 (#416) * Fixed sizing on squat videos (#419) * Support claims no longer show up on Published page (#384) diff --git a/ui/js/actions/content.js b/ui/js/actions/content.js index 95ebf28f1..150eed7ef 100644 --- a/ui/js/actions/content.js +++ b/ui/js/actions/content.js @@ -20,6 +20,8 @@ import * as modals from "constants/modal_types"; const { ipcRenderer } = require("electron"); +const DOWNLOAD_POLL_INTERVAL = 250; + export function doResolveUri(uri) { return function(dispatch, getState) { uri = lbryuri.normalize(uri); @@ -175,7 +177,7 @@ export function doUpdateLoadStatus(uri, outpoint) { // download hasn't started yet setTimeout(() => { dispatch(doUpdateLoadStatus(uri, outpoint)); - }, 250); + }, DOWNLOAD_POLL_INTERVAL); } else if (fileInfo.completed) { // TODO this isn't going to get called if they reload the client before // the download finished @@ -221,7 +223,7 @@ export function doUpdateLoadStatus(uri, outpoint) { setTimeout(() => { dispatch(doUpdateLoadStatus(uri, outpoint)); - }, 250); + }, DOWNLOAD_POLL_INTERVAL); } }); }; diff --git a/ui/js/page/settings/view.jsx b/ui/js/page/settings/view.jsx index 1813e83bb..ad8c375b6 100644 --- a/ui/js/page/settings/view.jsx +++ b/ui/js/page/settings/view.jsx @@ -116,6 +116,7 @@ class SettingsPage extends React.PureComponent { return (
+ {/*

{__("Language")}

@@ -137,7 +138,7 @@ class SettingsPage extends React.PureComponent {
-
+ */}

{__("Download Directory")}