chanjunkai 5 년 전
부모
커밋
b300ae6de7
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Controller/CloudStorage.py

+ 2 - 0
Controller/CloudStorage.py

@@ -139,6 +139,8 @@ class CloudStorageView(View):
                 'duration': 10,
             })
         playlist = PlaylistGenerator(playlist_entries).generate()
+        response = HttpResponse(playlist, content_type="application/octet-stream")
+        return response
         return HttpResponse(status=200, content=playlist)