This commit is contained in:
Jeremy Kauffman 2017-09-28 20:32:59 -04:00
parent 021d663960
commit f4b2c599c3
3 changed files with 3 additions and 4 deletions

View file

@ -12,6 +12,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
* *
### Changed ### Changed
* Updated the daemon from 0.16.1 to [0.16.3](https://github.com/lbryio/lbry/releases/tag/v0.16.3) to improve download performance and download issue detection.
* Changed the File page to make it clearer how to to open the folder for a file * Changed the File page to make it clearer how to to open the folder for a file
### Fixed ### Fixed

View file

@ -20,7 +20,7 @@
"electron-rebuild": "^1.5.11" "electron-rebuild": "^1.5.11"
}, },
"lbrySettings": { "lbrySettings": {
"lbrynetDaemonVersion": "0.16.1", "lbrynetDaemonVersion": "0.16.3",
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip" "lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip"
}, },
"license": "MIT" "license": "MIT"

View file

@ -325,7 +325,7 @@ export function doPurchaseUri(uri) {
fileInfo && !!downloadingByOutpoint[fileInfo.outpoint]; fileInfo && !!downloadingByOutpoint[fileInfo.outpoint];
function attemptPlay(cost, instantPurchaseMax = null) { function attemptPlay(cost, instantPurchaseMax = null) {
if (!instantPurchaseMax || cost > instantPurchaseMax) { if (cost > 0 && (!instantPurchaseMax || cost > instantPurchaseMax)) {
dispatch(doOpenModal(modals.AFFIRM_PURCHASE, { uri })); dispatch(doOpenModal(modals.AFFIRM_PURCHASE, { uri }));
} else { } else {
dispatch(doLoadVideo(uri)); dispatch(doLoadVideo(uri));
@ -373,8 +373,6 @@ export function doPurchaseUri(uri) {
}); });
} }
} }
return dispatch(doOpenModal(modals.AFFIRM_PURCHASE, { uri }));
}; };
} }