mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 14:59:29 -07:00
fix: use const
This commit is contained in:
parent
ed4c265dad
commit
e7c1a878ff
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ export function encodeZBase32 (data) {
|
|||
}
|
||||
|
||||
export function getMetaFromReq (req) {
|
||||
let versionDetails = (req.app.get('git_hash'))
|
||||
const versionDetails = (req.app.get('git_hash'))
|
||||
? `+${req.app.get('git_hash').substring(0, 10)}`
|
||||
: ''
|
||||
|
||||
|
|
Loading…
Reference in a new issue