don't crash if Title attribute is not specified on ProjectTask
This commit is contained in:
parent
dbe3d98c4e
commit
f7fdb51610
@ -302,7 +302,7 @@ namespace UniversalEditor.DataFormats.UEPackage
|
||||
if (tag.FullName != "Task") continue;
|
||||
|
||||
ProjectTask task = new ProjectTask();
|
||||
task.Title = tag.Attributes["Title"].Value;
|
||||
task.Title = tag.Attributes["Title"]?.Value;
|
||||
|
||||
MarkupTagElement tagActions = (tag.Elements["Actions"] as MarkupTagElement);
|
||||
if (tagActions != null)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user