We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ccc15 commit 73f1132Copy full SHA for 73f1132
dotnet/src/dotnetframework/GxClasses/Model/URLRouter.cs
@@ -20,7 +20,7 @@ internal class URLRouter
20
internal static string GetURLRoute(string key, object[] objectParms, string[] parmsName, string scriptPath)
21
{
22
string[] parms = objectParms.Select(p => StringizeParm(p)).ToArray();
23
- if (PathUtil.IsAbsoluteUrl(key) || key.StartsWith("/") || string.IsNullOrEmpty(key) || scheme.IsMatch(key))
+ if (string.IsNullOrEmpty(key) || PathUtil.IsAbsoluteUrl(key) || key.StartsWith("/") || scheme.IsMatch(key))
24
25
if (parms.Length > 0)
26
0 commit comments