Skip to content

Commit 649b16b

Browse files
committed
fix: bug
1 parent 72385b7 commit 649b16b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/repository/database/episode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func (e *Episode) List(ctx context.Context, params *repository.ListEpisodesParam
4444
}
4545
if params.SeriesID != "" {
4646
clauses = append(clauses, "seriesID = ?")
47-
args = append(args, params.SeasonID)
47+
args = append(args, params.SeriesID)
4848
}
4949

5050
var whereClause string

0 commit comments

Comments
 (0)