mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-09-24 04:29:34 -04:00
umapinfo: allow uppercase episode shortcuts
This commit is contained in:
parent
ab012da79d
commit
758184e5bc
@ -515,7 +515,10 @@ static int ParseStandardProperty(u_scanner_t* s, mapentry_t *mape)
|
|||||||
if (U_CheckToken(s, ','))
|
if (U_CheckToken(s, ','))
|
||||||
{
|
{
|
||||||
if (U_MustGetToken(s, TK_StringConst))
|
if (U_MustGetToken(s, TK_StringConst))
|
||||||
|
{
|
||||||
key = strdup(s->string);
|
key = strdup(s->string);
|
||||||
|
key[0] = tolower(key[0]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user