umapinfo: allow uppercase episode shortcuts

This commit is contained in:
Roman Fomin 2022-03-31 13:57:17 +07:00
parent ab012da79d
commit 758184e5bc

View File

@ -515,7 +515,10 @@ static int ParseStandardProperty(u_scanner_t* s, mapentry_t *mape)
if (U_CheckToken(s, ','))
{
if (U_MustGetToken(s, TK_StringConst))
{
key = strdup(s->string);
key[0] = tolower(key[0]);
}
}
}