added channel info to show page

This commit is contained in:
bill bittner 2017-10-25 17:07:59 -07:00
parent bfe894e2a4
commit a72d3a08a6
3 changed files with 41 additions and 24 deletions

View file

@ -226,6 +226,7 @@ module.exports = {
fileInfo['title'] = resolveResult.title;
fileInfo['description'] = resolveResult.description;
if (resolveResult.certificateId) { fileInfo['certificateId'] = resolveResult.certificateId };
if (resolveResult.channelName) { fileInfo['channelName'] = resolveResult.channelName };
showFile(fileInfo, res);
return fileInfo;
})