fixed error on metadata 404

This commit is contained in:
Danny Coates 2018-01-11 23:20:56 -08:00
parent 76175d61af
commit bace117ada
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
2 changed files with 7 additions and 2 deletions

View file

@ -21,7 +21,7 @@ module.exports = function(state, emit) {
return notFound(state, emit);
}
state.fileInfo.id = state.params.id;
state.fileInfo.key = state.params.key;
state.fileInfo.secretKey = state.params.key;
const fileInfo = state.fileInfo;
const size = fileInfo.size
? state.translate('downloadFileSize', { size: bytes(fileInfo.size) })