allow media of all states to be added to playlist (#154)
This commit is contained in:
parent
be41c6876d
commit
adf3d4377f
2 changed files with 2 additions and 2 deletions
|
@ -1386,7 +1386,7 @@ class Playlist(models.Model):
|
||||||
@property
|
@property
|
||||||
def thumbnail_url(self):
|
def thumbnail_url(self):
|
||||||
pm = self.playlistmedia_set.first()
|
pm = self.playlistmedia_set.first()
|
||||||
if pm:
|
if pm and pm.media.thumbnail:
|
||||||
return helpers.url_from_path(pm.media.thumbnail.path)
|
return helpers.url_from_path(pm.media.thumbnail.path)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
|
@ -896,7 +896,7 @@ class PlaylistDetail(APIView):
|
||||||
|
|
||||||
if action in ["add", "remove", "ordering"]:
|
if action in ["add", "remove", "ordering"]:
|
||||||
media = Media.objects.filter(
|
media = Media.objects.filter(
|
||||||
friendly_token=media_friendly_token, state="public"
|
friendly_token=media_friendly_token
|
||||||
).first()
|
).first()
|
||||||
if media:
|
if media:
|
||||||
if action == "add":
|
if action == "add":
|
||||||
|
|
Loading…
Add table
Reference in a new issue