forked from 0x2620/pandora
send Access-Control-Allow-Origin but no data for OPTIONS requests
This commit is contained in:
parent
de011b5369
commit
e3bf14dab8
1 changed files with 4 additions and 2 deletions
|
@ -726,7 +726,8 @@ def frame(request, id, size, position=None):
|
||||||
frame = os.path.join(settings.STATIC_ROOT, 'jpg/list256.jpg')
|
frame = os.path.join(settings.STATIC_ROOT, 'jpg/list256.jpg')
|
||||||
#raise Http404
|
#raise Http404
|
||||||
response = HttpFileResponse(frame, content_type='image/jpeg')
|
response = HttpFileResponse(frame, content_type='image/jpeg')
|
||||||
response['Access-Control-Allow-Origin'] = '*'
|
if request.method == 'OPTIONS':
|
||||||
|
response.allow_access()
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def poster_frame(request, id, position):
|
def poster_frame(request, id, position):
|
||||||
|
@ -832,7 +833,8 @@ def timeline(request, id, size, position=-1, format='jpg', mode=None):
|
||||||
mode = modes.pop(0)
|
mode = modes.pop(0)
|
||||||
path = timeline()
|
path = timeline()
|
||||||
response = HttpFileResponse(path, content_type='image/jpeg')
|
response = HttpFileResponse(path, content_type='image/jpeg')
|
||||||
response['Access-Control-Allow-Origin'] = '*'
|
if request.method == 'OPTIONS':
|
||||||
|
response.allow_access()
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def download(request, id, index=1):
|
def download(request, id, index=1):
|
||||||
|
|
Loading…
Reference in a new issue