4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-26 10:59:23 +00:00

Add support for downloading files (nctalk) (#1249)

Signed-off-by: Gary Kim <gary@garykim.dev>
This commit is contained in:
Gary Kim
2020-10-19 17:16:34 -04:00
committed by GitHub
parent 25c82ddf02
commit 950f2759bd
14 changed files with 49 additions and 237 deletions

View File

@ -21,5 +21,5 @@ const (
// RemoteDavEndpoint returns the endpoint for the Dav API for Nextcloud
func RemoteDavEndpoint(username string, davType string) string {
return "/remote.php/dav/" + username + "/" + davType + "/"
return "/remote.php/dav/" + davType + "/" + username + "/"
}