fix ?files failing to load after publish
This commit is contained in:
parent
f191ddf623
commit
7c418c0ea6
1 changed files with 7 additions and 0 deletions
|
@ -146,6 +146,13 @@ var MyFilesPage = React.createClass({
|
|||
for (let fileInfo of this.state.filesInfo) {
|
||||
let {completed, written_bytes, total_bytes, lbry_uri, file_name, download_path,
|
||||
stopped, metadata} = fileInfo;
|
||||
|
||||
if (!metadata)
|
||||
{
|
||||
console.log('Empty metadata, skipping render');
|
||||
continue;
|
||||
}
|
||||
|
||||
let {title, thumbnail} = metadata;
|
||||
|
||||
var ratioLoaded = written_bytes / total_bytes;
|
||||
|
|
Loading…
Reference in a new issue