feat: enricher: +1

This commit is contained in:
2026-04-05 01:52:19 +02:00
parent d8c3813e39
commit 1ed51fdbdb
10 changed files with 97 additions and 10 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ class FileNameEnricher(BaseEnricher):
def provides(self) -> set[str]:
return {"artist", "title", "album"}
def enrich(self, track: TrackMeta) -> Optional[dict]:
async def enrich(self, track: TrackMeta) -> Optional[dict]:
if not track.is_local or not track.url:
return None