Update define.sh

This commit is contained in:
Kroese 2024-10-01 00:08:28 +02:00 committed by GitHub
parent d6acc0f387
commit 5e97cb7b0f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -673,6 +673,14 @@ getSize() {
}
isMido() {
local id="$1"
local lang="$2"
local sum
sum=$(getMido "$id" "en" "sum")
[ -n "$sum" ] && return 0
return 1
}