Skip to content

Commit 320fc48

Browse files
Merge pull request #51 from nul800sebastiaan/issue50
GetFiles shouldn't return a list of null #50
2 parents 86569e9 + db15a3b commit 320fc48

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
@@ -429,7 +429,7 @@ public IEnumerable<string> GetFiles(string path, string filter)
429429
}
430430

431431
return null;
432-
});
432+
}).Where(x => x != null);
433433
}
434434

435435
/// <summary>

0 commit comments

Comments
 (0)