mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 15:24:10 +02:00
Fix GetResultString null crash
This commit is contained in:
parent
e11c4aa0fe
commit
13eee411a9
1 changed files with 1 additions and 1 deletions
|
@ -1701,7 +1701,7 @@ namespace IDE.ui
|
||||||
mHoverResolveTask.mResult = new String(autocompleteInfo ?? "");
|
mHoverResolveTask.mResult = new String(autocompleteInfo ?? "");
|
||||||
}
|
}
|
||||||
|
|
||||||
resolveParams.mResultString = new String(autocompleteInfo);
|
resolveParams.mResultString = new String(autocompleteInfo ?? "");
|
||||||
}
|
}
|
||||||
else if (resolveType == ResolveType.GetCurrentLocation)
|
else if (resolveType == ResolveType.GetCurrentLocation)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue