mirror of
https://github.com/1f349/go-webdav.git
synced 2024-12-22 16:24:14 +00:00
fix: deprecrated conversion from int64 to string
This commit is contained in:
parent
9e23289610
commit
9cd3bb51b9
@ -195,7 +195,7 @@ func (c *Client) Options(path string) (classes map[string]bool, methods map[stri
|
|||||||
func (c *Client) SyncCollection(path, syncToken string, level Depth, limit *Limit, prop *Prop) (*Multistatus, error) {
|
func (c *Client) SyncCollection(path, syncToken string, level Depth, limit *Limit, prop *Prop) (*Multistatus, error) {
|
||||||
q := SyncCollectionQuery{
|
q := SyncCollectionQuery{
|
||||||
SyncToken: syncToken,
|
SyncToken: syncToken,
|
||||||
SyncLevel: string(level),
|
SyncLevel: level.String(),
|
||||||
Limit: limit,
|
Limit: limit,
|
||||||
Prop: prop,
|
Prop: prop,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user