mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-09 11:17:20 -03:00
UI: fix nullref
Some checks are pending
Canary release job / Create tag (push) Waiting to run
Canary release job / Release for linux-arm64 (push) Waiting to run
Canary release job / Release for linux-x64 (push) Waiting to run
Canary release job / Release for win-x64 (push) Waiting to run
Canary release job / Release MacOS universal (push) Waiting to run
Some checks are pending
Canary release job / Create tag (push) Waiting to run
Canary release job / Release for linux-arm64 (push) Waiting to run
Canary release job / Release for linux-x64 (push) Waiting to run
Canary release job / Release for win-x64 (push) Waiting to run
Canary release job / Release MacOS universal (push) Waiting to run
This commit is contained in:
parent
9acecc9eb2
commit
30b22ce6ba
1 changed files with 3 additions and 2 deletions
|
@ -35,8 +35,9 @@ namespace Ryujinx.Ava.Utilities.Compat
|
||||||
IssueNumber = row[header.IndexOf("issue_number")].Parse<int>();
|
IssueNumber = row[header.IndexOf("issue_number")].Parse<int>();
|
||||||
|
|
||||||
var titleIdRow = row[header.IndexOf("extracted_game_id")].ToString();
|
var titleIdRow = row[header.IndexOf("extracted_game_id")].ToString();
|
||||||
if (!string.IsNullOrEmpty(titleIdRow))
|
TitleId = !string.IsNullOrEmpty(titleIdRow)
|
||||||
TitleId = titleIdRow;
|
? titleIdRow
|
||||||
|
: default(Optional<string>);
|
||||||
|
|
||||||
var issueTitleRow = row[header.IndexOf("issue_title")].ToString();
|
var issueTitleRow = row[header.IndexOf("issue_title")].ToString();
|
||||||
if (TitleId.HasValue)
|
if (TitleId.HasValue)
|
||||||
|
|
Loading…
Reference in a new issue