Skip to content

Commit b286d12

Browse files
committed
Adjusted changelog, added suggestions by copilot
1 parent 25bb923 commit b286d12

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

beets/autotag/match.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def tag_album(
259259
items,
260260
search_artist: str | None = None,
261261
search_album: str | None = None,
262-
search_ids: list[str] = [],
262+
search_ids: list[str] | None = None,
263263
) -> tuple[str, str, Proposal]:
264264
"""Return a tuple of the current artist name, the current album
265265
name, and a `Proposal` containing `AlbumMatch` candidates.

docs/changelog.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@ For packagers:
2121

2222
Other changes:
2323

24-
- Standardized ``search_*`` parameter handling in autotag matchers. Manual album and
25-
singleton searches now behave consistently: when the prompt does not specify a
26-
search query, the system defaults to using the corresponding metadata value.
24+
- Standardized ``search_*`` parameter handling in autotag matchers. Manual album
25+
and singleton searches now behave consistently: when a user does not specify a
26+
search query in the prompt, the system defaults to using the corresponding
27+
value from the metadata. This was already the case for albums but not for
28+
singletons.
2729

2830
2.5.1 (October 14, 2025)
2931
------------------------

0 commit comments

Comments
 (0)