mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 06:19:58 +02:00
Support coma separated mbids in tags
This commit is contained in:
parent
c72f9cc0d9
commit
8cc78652c7
1 changed files with 1 additions and 1 deletions
|
@ -494,7 +494,7 @@ class ArtistField(serializers.Field):
|
|||
|
||||
def to_internal_value(self, data):
|
||||
# we have multiple values that can be separated by various separators
|
||||
separators = [";"]
|
||||
separators = [";", ","]
|
||||
# we get a list like that if tagged via musicbrainz
|
||||
# ae29aae4-abfb-4609-8f54-417b1f4d64cc; 3237b5a8-ae44-400c-aa6d-cea51f0b9074;
|
||||
raw_mbids = data["mbids"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue