You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 11, 2020. It is now read-only.
I am using your script to connect an Apache Webdav Server but I have an error on this line : (null has the null value in IE)
var collection = resourcetype.getElementsByTagName('D:collection')[0];
I need to modify the lines :
/*
var collection = resourcetype.getElementsByTagName('D:collection')[0];
if(collection) {
result[i-1] = new fs.dir(href);
} else {
result[i-1] = new fs.file(href);
}
*/
result[i-1] = new fs.dir(href);
What do I need to resolve the collection's problem ?
Hello,
I am using your script to connect an Apache Webdav Server but I have an error on this line : (null has the null value in IE)
var collection = resourcetype.getElementsByTagName('D:collection')[0];
I need to modify the lines :
/*
var collection = resourcetype.getElementsByTagName('D:collection')[0];
if(collection) {
result[i-1] = new fs.dir(href);
} else {
result[i-1] = new fs.file(href);
}
*/
result[i-1] = new fs.dir(href);
What do I need to resolve the collection's problem ?
Thanks !