mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Merge branch 'master' into edit-custom-config
This commit is contained in:
commit
81f10729e1
2 changed files with 3 additions and 1 deletions
|
|
@ -958,7 +958,7 @@ class LyricsPlugin(RequestHandler, plugins.BeetsPlugin):
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def backends(self) -> list[Backend]:
|
def backends(self) -> list[Backend]:
|
||||||
user_sources = self.config["sources"].get()
|
user_sources = self.config["sources"].as_str_seq()
|
||||||
|
|
||||||
chosen = sanitize_choices(user_sources, self.BACKEND_BY_NAME)
|
chosen = sanitize_choices(user_sources, self.BACKEND_BY_NAME)
|
||||||
if "google" in chosen and not self.config["google_API_key"].get():
|
if "google" in chosen and not self.config["google_API_key"].get():
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,8 @@ Bug fixes:
|
||||||
calls and rate limit exhaustion.
|
calls and rate limit exhaustion.
|
||||||
- Running `beet --config <mypath> config -e` now edits `<mypath>` rather than
|
- Running `beet --config <mypath> config -e` now edits `<mypath>` rather than
|
||||||
the default config path. :bug:`5652`
|
the default config path. :bug:`5652`
|
||||||
|
- :doc:`plugins/lyrics`: Accepts strings for lyrics sources (previously only
|
||||||
|
accepted a list of strings). :bug:`5962`
|
||||||
|
|
||||||
For plugin developers:
|
For plugin developers:
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue