Signed-off-by: Christian Wolf <github@christianwolf.email>
This commit is contained in:
Christian Wolf 2022-10-27 13:36:20 +02:00
Родитель 74605f1a5c
Коммит 5f6f59da67
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9FC3120E932F73F1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -13,7 +13,7 @@ instance.interceptors.request.use((config) => {
`Making "${config.method}" request to "${config.url}"`,
config
)
const contentType = config.headers[config.method]['Content-Type']
const contentType = config.headers[config.method]["Content-Type"]
if (!["application/json", "text/json"].includes(contentType)) {
Vue.$log.warn(
`Request to "${config.url}" is using Content-Type "${contentType}", not JSON`