diff --git a/go_cloud/api b/go_cloud/api index 465f8fc..b65f6cc 100755 Binary files a/go_cloud/api and b/go_cloud/api differ diff --git a/go_cloud/internal/storage/nextcloud.go b/go_cloud/internal/storage/nextcloud.go index 6ca3ea5..c94600a 100644 --- a/go_cloud/internal/storage/nextcloud.go +++ b/go_cloud/internal/storage/nextcloud.go @@ -69,6 +69,8 @@ func NewUserWebDAVClient(nextcloudBaseURL, username, password string) *WebDAVCli baseURL := strings.Split(nextcloudBaseURL, "/remote.php")[0] // Build the full WebDAV URL for this user fullURL := fmt.Sprintf("%s/remote.php/dav/files/%s", baseURL, username) + + fmt.Printf("[WEBDAV-USER] Input URL: %s, Base: %s, Full: %s, User: %s\n", nextcloudBaseURL, baseURL, fullURL, username) return &WebDAVClient{ baseURL: fullURL,