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.
2 parents 651c73f + eae2bc0 commit 1db6c81Copy full SHA for 1db6c81
Parse/Internal/File/State/FileState.cs
@@ -13,7 +13,7 @@ internal class FileState {
13
public Uri SecureUrl {
14
get {
15
Uri uri = Url;
16
- if (uri.Host == ParseFileSecureDomain) {
+ if (uri != null && uri.Host == ParseFileSecureDomain) {
17
return new UriBuilder(uri) {
18
Scheme = ParseFileSecureScheme,
19
Port = -1, // This makes URIBuilder assign the default port for the URL scheme.
0 commit comments