Compare commits

...

2 Commits

Author SHA1 Message Date
2bf362c696 fix: don't try to encode cache with encoding none
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-04-26 18:42:39 +02:00
1b0749a962 fix: colors ffrom cached 2024-04-26 16:04:48 +02:00
3 changed files with 5 additions and 5 deletions

View File

@ -72,7 +72,7 @@ def write_metadata_to_target(metadata: Metadata, target: Target, song: Song):
r = artwork_connection.get(
url=best_variant["url"],
name=song.artwork.get_variant_name(best_variant, song.option_string),
name=song.artwork.get_variant_name(best_variant),
)
temp_target: Target = Target.temp()

View File

@ -194,7 +194,7 @@ class Connection:
additional_info = cached.attribute.additional_info
body = cached.content
if "encoding" in additional_info:
if additional_info.get("encoding", None) is not None:
body = body.decode(additional_info["encoding"])
resp.add(

View File

@ -8,7 +8,7 @@ from .metadata import (
ID3Timestamp,
Metadata
)
from ..utils.string_processing import unify, hash_url, hash_url
from ..utils.string_processing import unify, hash_url
from .parents import OuterProxy as Base
@ -50,8 +50,8 @@ class Artwork:
return None
return min(self._variant_mapping.values(), key=lambda x: x["deviation"])
def get_variant_name(self, variant: ArtworkVariant, option_string: str) -> str:
return f"artwork_{variant['width']}x{variant['height']}_{option_string}"
def get_variant_name(self, variant: ArtworkVariant) -> str:
return f"artwork_{variant['width']}x{variant['height']}_{hash_url(variant['url']).replace('/', '_')}"
def __merge__(self, other: Artwork, override: bool = False) -> None:
for key, value in other._variant_mapping.items():