Skip to content

Commit a3a0c59

Browse files
committed
Check url nullability
1 parent 3e9e91d commit a3a0c59

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Flow.Launcher/Helper/PluginInstallationHelper.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,9 @@ await App.API.ShowProgressBoxAsync(prgBoxTitle,
259259

260260
private static bool InstallSourceKnown(string url)
261261
{
262+
if (string.IsNullOrEmpty(url))
263+
return false;
264+
262265
var pieces = url.Split('/');
263266

264267
if (pieces.Length < 4)

0 commit comments

Comments
 (0)