Used one branch for both fixes in caldav-go
This commit is contained in:
parent
951d92b2f0
commit
6b348fad04
4 changed files with 6 additions and 7 deletions
4
vendor/github.com/samedi/caldav-go/handlers/report.go
generated
vendored
4
vendor/github.com/samedi/caldav-go/handlers/report.go
generated
vendored
|
|
@ -113,8 +113,8 @@ func (rh reportHandler) fetchResourcesByFilters(origin *data.Resource, filtersXM
|
|||
return reps, err
|
||||
}
|
||||
|
||||
for _, resource := range resources {
|
||||
reps = append(reps, reportRes{resource.Path, &resource, true})
|
||||
for in, resource := range resources {
|
||||
reps = append(reps, reportRes{resource.Path, &resources[in], true})
|
||||
}
|
||||
} else {
|
||||
// the origin resource is not a collection, so returns just that as the result
|
||||
|
|
|
|||
2
vendor/modules.txt
vendored
2
vendor/modules.txt
vendored
|
|
@ -134,7 +134,7 @@ github.com/prometheus/procfs
|
|||
github.com/prometheus/procfs/nfs
|
||||
github.com/prometheus/procfs/xfs
|
||||
github.com/prometheus/procfs/internal/util
|
||||
# github.com/samedi/caldav-go v3.0.0+incompatible => github.com/kolaente/caldav-go v3.0.1-0.20190515182556-0537fdbe9340+incompatible
|
||||
# github.com/samedi/caldav-go v3.0.0+incompatible => github.com/kolaente/caldav-go v3.0.1-0.20190524174923-9e5cd1688227+incompatible
|
||||
github.com/samedi/caldav-go
|
||||
github.com/samedi/caldav-go/data
|
||||
github.com/samedi/caldav-go/errs
|
||||
|
|
|
|||
Reference in a new issue