Fix post-merge issues: indentation and EnsureIDs method signature

This commit is contained in:
Steve Yegge
2025-11-04 23:26:03 -08:00
parent de23bd21a6
commit d4b801fb34
3 changed files with 6 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ func (s *SQLiteStorage) generateBatchIDs(ctx context.Context, conn *sql.Conn, is
}
// Generate or validate IDs for all issues
if err := s.EnsureIDs(ctx, conn, prefix, issues, actor); err != nil {
if err := EnsureIDs(ctx, conn, prefix, issues, actor); err != nil {
return err
}