You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.183
Former-commit-id: 85d93be5537556349ef364365576dccf5d99b797
This commit is contained in:
parent
f94a1d9416
commit
d213358eb3
@ -12,6 +12,10 @@ namespace System.Net.Http
|
||||
return true;
|
||||
#endif
|
||||
|
||||
// Mono URI handling which does not distinguish between file and url absolute paths without scheme
|
||||
if (uri.Scheme == Uri.UriSchemeFile && uri.OriginalString.StartsWith ("/", StringComparison.Ordinal))
|
||||
return true;
|
||||
|
||||
return HttpUtilities.IsHttpUri (uri);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user