mirror of https://github.com/Chocobozzz/PeerTube
More robust short to complete uuid error handler
parent
7a07da01c4
commit
ded68a9760
|
@ -103,7 +103,13 @@ function checkMimetypeRegex (fileMimeType: string, mimeTypeRegex: string) {
|
|||
// ---------------------------------------------------------------------------
|
||||
|
||||
function toCompleteUUID (value: string) {
|
||||
if (isShortUUID(value)) return shortToUUID(value)
|
||||
if (isShortUUID(value)) {
|
||||
try {
|
||||
return shortToUUID(value)
|
||||
} catch {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
return value
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue