webdavfs icon indicating copy to clipboard operation
webdavfs copied to clipboard

getinfo() performing redundant requests

Open zopyx opened this issue 8 years ago • 0 comments

Call getinfo() on a file resources causes four HTTP requests

HEAD some_url
PROPFIND some_url
HEAD some_url
PROPFIND some_url
  1. Performing two requests with the same URL does not make sense
  2. The first HEAD request appears superfluous. As single PROPFIND request should be sufficient instead of 2 or 4 requests

I am not yet sure if this is an issue in our webdav driver or the webdav2 client library

zopyx avatar Nov 28 '17 15:11 zopyx