Make Lua `onqueryitemtext` more resilient (resolves #3897)

This commit is contained in:
James Groom 2024-04-19 00:03:30 +10:00 committed by GitHub
parent 45e2307a7b
commit 1ff7d54511
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 5 deletions

View File

@ -511,11 +511,7 @@ namespace BizHawk.Client.EmuHawk
{
if (Engaged())
{
Tastudio.QueryItemTextCallback = (index, name) =>
{
var result = luaf.Call(index, name);
return result?[0]?.ToString();
};
Tastudio.QueryItemTextCallback = (index, name) => luaf.Call(index, name)?.FirstOrDefault()?.ToString();
}
}