fix #615
This commit is contained in:
parent
021d663960
commit
f4b2c599c3
3 changed files with 3 additions and 4 deletions
|
@ -12,6 +12,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
|||
*
|
||||
|
||||
### 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
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"electron-rebuild": "^1.5.11"
|
||||
},
|
||||
"lbrySettings": {
|
||||
"lbrynetDaemonVersion": "0.16.1",
|
||||
"lbrynetDaemonVersion": "0.16.3",
|
||||
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip"
|
||||
},
|
||||
"license": "MIT"
|
||||
|
|
|
@ -325,7 +325,7 @@ export function doPurchaseUri(uri) {
|
|||
fileInfo && !!downloadingByOutpoint[fileInfo.outpoint];
|
||||
|
||||
function attemptPlay(cost, instantPurchaseMax = null) {
|
||||
if (!instantPurchaseMax || cost > instantPurchaseMax) {
|
||||
if (cost > 0 && (!instantPurchaseMax || cost > instantPurchaseMax)) {
|
||||
dispatch(doOpenModal(modals.AFFIRM_PURCHASE, { uri }));
|
||||
} else {
|
||||
dispatch(doLoadVideo(uri));
|
||||
|
@ -373,8 +373,6 @@ export function doPurchaseUri(uri) {
|
|||
});
|
||||
}
|
||||
}
|
||||
|
||||
return dispatch(doOpenModal(modals.AFFIRM_PURCHASE, { uri }));
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue