diff --git a/app/templates/share.js b/app/templates/share.js index e86d18e0..abf5d018 100644 --- a/app/templates/share.js +++ b/app/templates/share.js @@ -1,3 +1,4 @@ +/* global EXPIRE_SECONDS */ const html = require('choo/html'); const assets = require('../../common/assets'); const notFound = require('./notFound'); @@ -16,10 +17,11 @@ function passwordComplete(state, password) { } function expireInfo(file, translate, emit) { + const hours = Math.floor(EXPIRE_SECONDS / 60 / 60); const el = html([ `
${translate('expireInfo', { downloadCount: '', - timespan: translate('timespanHours', { num: 24 }) + timespan: translate('timespanHours', { num: hours }) })}
` ]); const select = el.querySelector('select');