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 a5f0d8f commit 6bac375Copy full SHA for 6bac375
src/Umbraco.StorageProviders.AzureBlob/AzureBlobItemInfo.cs
@@ -72,7 +72,7 @@ private AzureBlobItemInfo(BlobClient blobClient)
72
public string Name { get; }
73
74
/// <inheritdoc />
75
- public string PhysicalPath => null!;
+ public string? PhysicalPath => null;
76
77
78
public Stream CreateReadStream() => _blobClient.OpenRead();
src/Umbraco.StorageProviders.AzureBlob/AzureBlobPrefixInfo.cs
@@ -36,7 +36,7 @@ public AzureBlobPrefixInfo(string prefix)
36
37
38
39
40
41
42
public Stream CreateReadStream() => throw new InvalidOperationException();
0 commit comments