1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix directory browser parent path

This commit is contained in:
Luke Pulverenti 2016-01-29 23:55:05 -05:00
parent 0c696294ae
commit e4fcafe7aa
9 changed files with 35 additions and 68 deletions

View file

@ -15,12 +15,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.0.29",
"_release": "1.0.29",
"version": "1.0.31",
"_release": "1.0.31",
"_resolution": {
"type": "version",
"tag": "1.0.29",
"commit": "2e60e59d116fee68281235ba19f1e74073565c50"
"tag": "1.0.31",
"commit": "ca58e91f3f9285e81214f6e8cc6f1f04e9c505ed"
},
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "~1.0.0",

View file

@ -109,6 +109,8 @@
if (request.dataType == 'json' || request.headers.accept == 'application/json') {
return response.json();
} else if (request.dataType == 'text' || (response.headers.get('Content-Type') || '').toLowerCase().indexOf('text/') == 0) {
return response.text();
} else {
return response;
}