mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-02 18:25:12 +00:00
Catch undefined reference to anonymous upload names
This commit is contained in:
parent
1cb122c839
commit
c199a24986
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class FileList extends React.PureComponent {
|
|||
uriParams.claimId = this.getChannelSignature(fileInfo);
|
||||
} else {
|
||||
uriParams.claimId = fileInfo.claim_id;
|
||||
uriParams.claimName = fileInfo.claim_name;
|
||||
uriParams.claimName = fileInfo.claim_name || fileInfo.name;
|
||||
}
|
||||
const uri = buildURI(uriParams);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue