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
This commit is contained in:
thetownfool 2020-02-14 18:37:23 +00:00 committed by GitHub
parent 04b4602c2b
commit 8fb412e960
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ namespace Microsoft.AspNetCore.Builder
}
else
{
throw new InvalidOperationException("Unknown OS platform");
return $@"<p>Edge is not current supported on your platform</p>";
}
}