From e3022b858766f7b1a8f99ef4f3bced445ccc1ce7 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Fri, 22 Mar 2024 19:19:31 -0400 Subject: [PATCH] fix: skipExisting should be false --- api/s5/s5.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/s5/s5.go b/api/s5/s5.go index ed4af6e..bb85e1b 100644 --- a/api/s5/s5.go +++ b/api/s5/s5.go @@ -2045,7 +2045,7 @@ func (s *S5API) pinImportCronJob(cid string, url string, proofUrl string, userId __import.Status = models.ImportStatusProcessing - err = s._import.SaveImport(ctx, __import, true) + err = s._import.SaveImport(ctx, __import, false) if err != nil { return err }