Skip to content

Commit

Permalink
#96 fusedav compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
yar229 committed Nov 3, 2017
1 parent e7c3ebd commit d28b739
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions NWebDav/NWebDav.Server/Handlers/PropFindHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ public async Task<bool> HandleRequestAsync(IHttpContext httpContext, IStore stor
{
foreach (var propertyName in propertyList)
await AddPropertyAsync(httpContext, xResponse, xProp, propertyManager, entry.Entry, propertyName, addedProperties).ConfigureAwait(false);

//TODO: dirty fix!
// some clients reqire collection property
await AddPropertyAsync(httpContext, xResponse, xProp, propertyManager, entry.Entry, "collection", addedProperties).ConfigureAwait(false);
}

// Add the values (if any)
Expand Down

0 comments on commit d28b739

Please sign in to comment.