1
1
mirror of https://github.com/go-gitea/gitea synced 2025-12-07 13:28:25 +00:00

Use GetListOptions() and panic()

This commit is contained in:
chesterip
2024-04-18 22:19:35 -04:00
parent ae25e049e4
commit 34777376d6
2 changed files with 3 additions and 13 deletions
+1 -1
View File
@@ -183,7 +183,7 @@ func ToTag(repo *repo_model.Repository, t *git.Tag) *api.Tag {
// ToActionTask convert a actions_model.ActionTask to an api.ActionTask
func ToActionTask(ctx context.Context, repo *repo_model.Repository, t *actions_model.ActionTask) *api.ActionTask {
if err := t.LoadAttributes(ctx); err != nil {
log.Warn("LoadAttributes of ActionTask: %v", err)
panic(fmt.Sprintf("failed to execute ActionTask.LoadAttributes(): %v", err))
}
return &api.ActionTask{