mirror of
https://github.com/octoleo/restic.git
synced 2024-11-21 20:35:12 +00:00
lock: switch to repository.List
This commit is contained in:
parent
bfb56b78e1
commit
1dfd854769
@ -341,8 +341,8 @@ func (l *Lock) checkExistence(ctx context.Context) (bool, error) {
|
||||
|
||||
exists := false
|
||||
|
||||
err := l.repo.Backend().List(ctx, LockFile, func(fi backend.FileInfo) error {
|
||||
if fi.Name == l.lockID.String() {
|
||||
err := l.repo.List(ctx, LockFile, func(id ID, size int64) error {
|
||||
if id.Equal(*l.lockID) {
|
||||
exists = true
|
||||
}
|
||||
return nil
|
||||
|
Loading…
Reference in New Issue
Block a user