mirror of
https://github.com/1f349/go-webdav.git
synced 2024-12-22 00:04:19 +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) {
|
||||
q := SyncCollectionQuery{
|
||||
SyncToken: syncToken,
|
||||
SyncLevel: string(level),
|
||||
SyncLevel: level.String(),
|
||||
Limit: limit,
|
||||
Prop: prop,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user