mirror of
https://github.com/go-gitea/gitea
synced 2025-07-15 23:17:19 +00:00
Fix string format verbs (#3637)
This commit is contained in:
committed by
Kim "BKC" Carlbäcker
parent
c46eb3f5b3
commit
d5d21b67d2
@@ -634,7 +634,7 @@ func DeliverHooks() {
|
||||
|
||||
tasks = make([]*HookTask, 0, 5)
|
||||
if err := x.Where("repo_id=? AND is_delivered=?", repoID, false).Find(&tasks); err != nil {
|
||||
log.Error(4, "Get repository [%d] hook tasks: %v", repoID, err)
|
||||
log.Error(4, "Get repository [%s] hook tasks: %v", repoID, err)
|
||||
continue
|
||||
}
|
||||
for _, t := range tasks {
|
||||
|
Reference in New Issue
Block a user