restored normalizing headers

This commit is contained in:
Phil Hughes 2018-06-29 09:38:41 +01:00
parent 8bb58fa533
commit 04f7e9aa42
No known key found for this signature in database
GPG key ID: 32245528C52E0F9F

View file

@ -1,4 +1,5 @@
import { __ } from '../../../locale';
import { normalizeHeaders } from '../../../lib/utils/common_utils';
import eventHub from '../../eventhub';
import service from '../../services';
import * as types from '../mutation_types';
@ -66,7 +67,8 @@ export const getFileData = ({ state, commit, dispatch }, { path, makeFileActive
`${gon.relative_url_root ? gon.relative_url_root : ''}${file.url.replace('/-/', '/')}`,
)
.then(({ data, headers }) => {
setPageTitle(decodeURI(headers['page-title']));
const normalizedHeaders = normalizeHeaders(headers);
setPageTitle(decodeURI(normalizedHeaders['PAGE-TITLE']));
commit(types.SET_FILE_DATA, { data, file });
commit(types.TOGGLE_FILE_OPEN, path);