dont fail if part has no timeline, look for timeline fallback from top

This commit is contained in:
j 2012-06-03 00:39:36 +02:00
commit 495a22dd97
2 changed files with 8 additions and 3 deletions

View file

@ -734,7 +734,7 @@ def timeline(request, id, size, position=-1, format='jpg', mode=None):
path = timeline()
while modes and not os.path.exists(path):
mode = modes.pop()
mode = modes.pop(0)
path = timeline()
return HttpFileResponse(path, content_type='image/jpeg')