Changed how time are sent to frontend during sync
All checks were successful
Build / build (push) Successful in 40s

This commit is contained in:
2025-11-15 14:55:03 +01:00
parent aa0b8275e7
commit 290d79ef5e
2 changed files with 3 additions and 4 deletions

View File

@@ -87,11 +87,11 @@ func SyncProgress() ProgressResponse {
timeSpent = currentTime.Sub(start) timeSpent = currentTime.Sub(start)
out := time.Time{}.Add(timeSpent) out := time.Time{}.Add(timeSpent)
fmt.Printf("\nTime spent: %v\n", timeSpent) fmt.Printf("\nTime spent: %v\n", timeSpent)
fmt.Printf("Total time: %v\n", out.Format("15:04:05.00000")) fmt.Printf("Time spent: %v\n", out.Format("15:04:05.00000"))
log.Printf("Progress: %v/%v %v%%\n", int(foldersSynced), int(numberOfFoldersToSync), progress) log.Printf("Progress: %v/%v %v%%\n", int(foldersSynced), int(numberOfFoldersToSync), progress)
return ProgressResponse{ return ProgressResponse{
Progress: fmt.Sprintf("%v", progress), Progress: fmt.Sprintf("%v", progress),
TimeSpent: fmt.Sprintf("%v", timeSpent), TimeSpent: out.Format("15:04:05"),
} }
} }
@@ -171,7 +171,7 @@ func SyncResult() SyncResponse {
GamesChangedContent: gamesChangedContent, GamesChangedContent: gamesChangedContent,
GamesRemoved: gamesRemoved, GamesRemoved: gamesRemoved,
CatchedErrors: catchedErrors, CatchedErrors: catchedErrors,
TotalTime: fmt.Sprintf("%v", timeSpent), TotalTime: out.Format("15:04:05"),
} }
} }

View File

@@ -46,7 +46,6 @@ func InitDB(host string, port string, user string, password string, dbname strin
_, _ = fmt.Fprintf(os.Stderr, "QueryRow failed: %v\n", err) _, _ = fmt.Fprintf(os.Stderr, "QueryRow failed: %v\n", err)
os.Exit(1) os.Exit(1)
} }
Testf()
fmt.Println(success) fmt.Println(success)
} }