Closed Choppel closed 5 years ago
The example states that a connection can be made like this
var wfs = require("webdav-fs")( "http://example.com/webdav/", "username", "password" );
But it should be like this (second param needs to be an object; see underlying module https://github.com/perry-mitchell/webdav-client)
var wfs = require("webdav-fs")( "http://example.com/webdav/", { "username": "Bob", "password": "Belcher" } );
I updated the docs, thanks @Choppel
The example states that a connection can be made like this
But it should be like this (second param needs to be an object; see underlying module https://github.com/perry-mitchell/webdav-client)