Fix exception in transfer input if no values are supplied

save-path-regex
Pat Hartl 2023-11-08 19:10:31 -06:00
parent 5c4f81cf80
commit c4793daf07
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@
Title = TitleSelector.Invoke(i)
});
TargetKeys = Values.Select(i => i.Id.ToString()).ToList();
if (Values != null)
TargetKeys = Values.Select(i => i.Id.ToString()).ToList();
}
}