Fix invalid short uuid conversion

Avoid "TypeError: Expected a string but received a null" error
pull/5898/head
Chocobozzz 2023-07-26 10:48:30 +02:00
parent 3ffff82e87
commit 69e3f2049f
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ function toCompleteUUID (value: string) {
try {
return shortToUUID(value)
} catch {
return null
return ''
}
}