Просмотр исходного кода

Merge pull request #1 from Rocky0102/Rocky0102-patch-proper-accept-header

Update api.ts to set proper header "Accept"
Rocky 1 год назад
Родитель
Сommit
8efe26ed57
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      app/client/api.ts

+ 1 - 0
app/client/api.ts

@@ -130,6 +130,7 @@ export function getHeaders() {
   const headers: Record<string, string> = {
     "Content-Type": "application/json",
     "x-requested-with": "XMLHttpRequest",
+    "Accept": "application/json",
   };
 
   const isAzure = accessStore.provider === ServiceProvider.Azure;