remove striped poster

This commit is contained in:
j 2011-10-23 23:47:22 +02:00
commit ed6bcebae6
4 changed files with 3 additions and 2 deletions

View file

@ -690,7 +690,7 @@ def poster(request, id, size=None):
if item.poster:
return image_to_response(item.poster, size)
else:
poster_path = os.path.join(settings.STATIC_ROOT, 'png/posterDark.48.png')
poster_path = os.path.join(settings.STATIC_ROOT, 'png/poster.png')
response = HttpFileResponse(poster_path, content_type='image/jpeg')
response['Cache-Control'] = 'no-cache'
return response