Browse Source

allow media of all states to be added to playlist (#154)

Markos Gogoulos 4 years ago
parent
commit
adf3d4377f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      files/models.py
  2. 1 1
      files/views.py

+ 1 - 1
files/models.py

@@ -1386,7 +1386,7 @@ class Playlist(models.Model):
     @property
     def thumbnail_url(self):
         pm = self.playlistmedia_set.first()
-        if pm:
+        if pm and pm.media.thumbnail:
             return helpers.url_from_path(pm.media.thumbnail.path)
         return None
 

+ 1 - 1
files/views.py

@@ -896,7 +896,7 @@ class PlaylistDetail(APIView):
 
         if action in ["add", "remove", "ordering"]:
             media = Media.objects.filter(
-                friendly_token=media_friendly_token, state="public"
+                friendly_token=media_friendly_token
             ).first()
             if media:
                 if action == "add":