Skip to content

Commit 8fb412e

Browse files
authored
allow valid error message to be displayed on linux (#18997)
when attempting to enable client debugging on blazor-wasm an attempt to provide a helpful message casues an ¨Unknown OS platform¨ exception relates to #16366 #12970
1 parent 04b4602 commit 8fb412e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/Blazor/Server/src/MonoDebugProxy/BlazorMonoDebugProxyAppBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ private static string GetLaunchEdgeInstructions(string appRootUrl)
337337
}
338338
else
339339
{
340-
throw new InvalidOperationException("Unknown OS platform");
340+
return $@"<p>Edge is not current supported on your platform</p>";
341341
}
342342
}
343343

0 commit comments

Comments
 (0)