From e846e1496575aa1ae7a3afa19f515e46211cf33e Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 10 Sep 2017 11:00:07 +0200 Subject: [PATCH] Ignore files with invalid name in the repo --- internal/repository/parallel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/repository/parallel.go b/internal/repository/parallel.go index 466b255eb..5f87f94a5 100644 --- a/internal/repository/parallel.go +++ b/internal/repository/parallel.go @@ -68,7 +68,7 @@ func ParallelWorkFuncParseID(f ParallelIDWorkFunc) ParallelWorkFunc { id, err := restic.ParseID(s) if err != nil { debug.Log("invalid ID %q: %v", id, err) - return err + return nil } return f(ctx, id)