fix printf types

was causing builds to fail on ci.
This commit is contained in:
Harvey Tindall
2025-12-01 12:55:24 +00:00
parent 320e9cd9d0
commit 70ee98f9f0
2 changed files with 4 additions and 3 deletions

View File

@@ -62,7 +62,7 @@ func (app *appContext) SetJellyseerrProfile(gc *gin.Context) {
}
u, err := app.js.UserByID(jellyseerrID)
if err != nil {
app.err.Printf(lm.FailedGetUser, jellyseerrID, lm.Jellyseerr, err)
app.err.Printf(lm.FailedGetUser, strconv.FormatInt(jellyseerrID, 10), lm.Jellyseerr, err)
respond(500, "Couldn't get user", gc)
return
}