Perry Mitchell

Results 673 comments of Perry Mitchell

@skjnldsv Unfortunately no, sorry. I don't personallly have a lot of use for cancellable requests with WebDAV, though I'm still in favour of adding this feature. I'd like to think...

Hi @nick-gray - What would suggest here? Would adding support for a `redirectsEnabled` kind of flag suffice? We could set `maxRedirects` to `0` under the hood by default, or something,...

Good catch @Shekesh! Thanks for this 👍

Yes, perhaps `getDirectoryContents` doesn't return a full prop listing. Can you try `stat` instead on a single file/dir to see if it returns what you need in the `props` sub...

I take it you're using this in the browser? I presume it's a cookie thing.. I've seen the same issue with ownCloud (upstream of nextcloud). It's most likely not something...

@Soknath what happens if, in the same browser, you browse to your nextcloud instance **after** running your code using the initial USERNAME - are you logged in? If you log...

@Soknath Well, I'm quick to blame Nextcloud/ownCloud on this one, as they could handle it better, but I do think the browser-side of React-Native is also to blame. It's perhaps...

@Soknath I think using `withCredentials: false` for Axios (in this library) could possibly help. You could try doing something like the following: ```javascript client.createDirectory("/test/dir", { withCredentials: false }); ``` Or...

@Soknath Have you by any chance been able to test my suggestion? This is a tough one to reproduce.

@masx200 Could you be more specific? Would you have an example of what you want implemented?