fixes channel claim issue introduced by file extension fix #830
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ module.exports = async (data) => {
|
|||
let lbrynetFileExt = null;
|
||||
if (!data.fileExt) {
|
||||
lbrynetClaimResult = await getClaim(lbrynetUri).catch(() => { return 'invalid URI' });
|
||||
lbrynetFileExt = lbrynetClaimResult && lbrynetClaimResult.file_name.split('.').slice(-1).pop();
|
||||
lbrynetFileExt = lbrynetClaimResult && lbrynetClaimResult.file_name && lbrynetClaimResult.file_name.split('.').slice(-1).pop();
|
||||
}
|
||||
|
||||
|
||||
// TODO verify that "generated_x" does anything at all
|
||||
|
|
Loading…
Add table
Reference in a new issue
I'd like to see more verbose logic, I'm not a fan of this being able to return
null
/false
.I'll investigate how we should handle this at a higher level (larger refactor-type issue)