Fix #201: escaping issue of track name in playlist modal

This commit is contained in:
Eliot Berriot 2018-05-15 18:37:44 +02:00
parent 8d2529f4f7
commit 8a321d4abe
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
3 changed files with 9 additions and 4 deletions

View file

@ -361,7 +361,7 @@ class Track(APIModelMixin):
import_tags
]
objects = TrackQuerySet.as_manager()
tags = TaggableManager()
tags = TaggableManager(blank=True)
class Meta:
ordering = ['album', 'position']