Fix NRE on Avalonia for error applets with unknown error message (#3888)

This commit is contained in:
gdkchan 2022-11-24 05:31:00 -03:00 committed by GitHub
parent ece36b274d
commit a0c77f8d11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -168,7 +168,7 @@ namespace Ryujinx.Ava.Ui.Applet
object response = await msgDialog.Run();
if (response != null && buttons.Length > 1 && (int)response != buttons.Length - 1)
if (response != null && buttons != null && buttons.Length > 1 && (int)response != buttons.Length - 1)
{
showDetails = true;
}