fix: omit total in FindTasks

This commit is contained in:
Jason Song
2023-01-04 16:16:31 +08:00
parent 5d938ebf4e
commit 7f6a803d24
4 changed files with 5 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ func Init() {
}
func DeleteResourceOfRepository(ctx context.Context, repo *repo_model.Repository) error {
tasks, _, err := actions_model.FindTasks(ctx, actions_model.FindTaskOptions{RepoID: repo.ID})
tasks, err := actions_model.FindTasks(ctx, actions_model.FindTaskOptions{RepoID: repo.ID})
if err != nil {
return fmt.Errorf("find task of repo %v: %w", repo.ID, err)
}