Merge pull request #830 from jessopb/fixRedirect
fixes channel claim issue introduced by file extension fix
This commit is contained in:
commit
7a80ec1836
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ module.exports = async (data) => {
|
||||||
let lbrynetFileExt = null;
|
let lbrynetFileExt = null;
|
||||||
if (!data.fileExt) {
|
if (!data.fileExt) {
|
||||||
lbrynetClaimResult = await getClaim(lbrynetUri).catch(() => { return 'invalid URI' });
|
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
|
// TODO verify that "generated_x" does anything at all
|
||||||
|
|
Loading…
Reference in a new issue