mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Fixed null semVer crash
This commit is contained in:
parent
cb1e3ec49f
commit
2ea5c34252
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ namespace IDE.util
|
|||
workItem.mKind = .FindVersion;
|
||||
workItem.mProjectName = new .(projectName);
|
||||
workItem.mURL = new .(url);
|
||||
if (!semVer.IsEmpty)
|
||||
if (semVer?.IsEmpty == false)
|
||||
workItem.mConstraints = new .() { new String(semVer.mVersion) };
|
||||
mWorkItems.Add(workItem);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue