Skip to content
Snippets Groups Projects
Verified Commit 94ee3c43 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fixed unkwown typo :D

parent 5936dfc2
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ from funkwhale_api.tags import models as tags_models
logger = logging.getLogger(__name__)
NODEFAULT = object()
# default title used when imported tracks miss the `Album` tag, see #122
UNKWOWN_ALBUM = "[Unknown Album]"
UNKNOWN_ALBUM = "[Unknown Album]"
class TagNotFound(KeyError):
......@@ -442,7 +442,7 @@ class AlbumField(serializers.Field):
except TagNotFound:
title = ""
title = title.strip() or UNKWOWN_ALBUM
title = title.strip() or UNKNOWN_ALBUM
final = {
"title": title,
"release_date": data.get("date", None),
......
......@@ -568,7 +568,7 @@ def test_serializer_album_default_title_when_missing_or_empty(data):
"title": "Track",
"artists": [{"name": "Artist", "mbid": None}],
"album": {
"title": metadata.UNKWOWN_ALBUM,
"title": metadata.UNKNOWN_ALBUM,
"mbid": None,
"release_date": None,
"artists": [],
......
......@@ -176,7 +176,7 @@ and reupload it.
.. _unknown_error:
Unkwown error
Unknown error
:::::::::::::
This error can happen for multiple reasons and likely indicates an issue with the Funkwhale
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment