Skip to content

Commit 49666fa

Browse files
committed
Temp fix for #102
1 parent ba259c9 commit 49666fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ public IEnumerable<string> GetFiles(string path, string filter)
466466
if (!blobList.Any())
467467
{
468468
this.LogHelper.Error<AzureFileSystem>("Blob not found", new DirectoryNotFoundException($"Blob not found at '{path}'"));
469-
return null;
469+
return Enumerable.Empty<string>();
470470
}
471471

472472
return blobList.OfType<CloudBlockBlob>().Select(cd =>

0 commit comments

Comments
 (0)