Skip to content

Commit db15a3b

Browse files
GetFiles shouldn't return a list of null #50
1 parent db4b093 commit db15a3b

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
@@ -438,7 +438,7 @@ public IEnumerable<string> GetFiles(string path, string filter)
438438
}
439439

440440
return null;
441-
});
441+
}).Where(x => x != null);
442442
}
443443

444444
/// <summary>

0 commit comments

Comments
 (0)