forked from 0x2620/pandora
only take first locale
This commit is contained in:
parent
1175e5d5bf
commit
e41b7e19d4
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ def init(request, data):
|
|||
del config['keys']
|
||||
|
||||
if 'HTTP_ACCEPT_LANGUAGE' in request.META:
|
||||
response['data']['locale'] = request.META['HTTP_ACCEPT_LANGUAGE'].split(';')[0].split('-')[0]
|
||||
response['data']['locale'] = request.META['HTTP_ACCEPT_LANGUAGE'].split(';')[0].split('-')[0].split(',')[0]
|
||||
|
||||
if request.META.get('HTTP_X_PREFIX') == 'NO':
|
||||
config['site']['videoprefix'] = ''
|
||||
|
|
Loading…
Reference in a new issue