1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Fix GetResultString null crash

This commit is contained in:
Brian Fiete 2022-03-02 09:59:11 -08:00
parent e11c4aa0fe
commit 13eee411a9

View file

@ -1701,7 +1701,7 @@ namespace IDE.ui
mHoverResolveTask.mResult = new String(autocompleteInfo ?? "");
}
resolveParams.mResultString = new String(autocompleteInfo);
resolveParams.mResultString = new String(autocompleteInfo ?? "");
}
else if (resolveType == ResolveType.GetCurrentLocation)
{