Skip to content

Commit 9f66bd3

Browse files
authored
Improve handling when djdt views dont respond with JSON (#1877)
1 parent e80c05d commit 9f66bd3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

debug_toolbar/static/debug_toolbar/js/utils.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ function ajax(url, init) {
7575
return fetch(url, init)
7676
.then(function (response) {
7777
if (response.ok) {
78-
return response.json();
78+
return response.json().catch(function(error){
79+
return Promise.reject(
80+
new Error("The response is a invalid Json object : " + error)
81+
);
82+
});
7983
}
8084
return Promise.reject(
8185
new Error(response.status + ": " + response.statusText)

docs/changes.rst

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Pending
77
* Raised the minimum Django version to 4.2.
88
* Automatically support Docker rather than having the developer write a
99
workaround for ``INTERNAL_IPS``.
10+
* Display a better error message when the toolbar's requests
11+
return invalid json.
1012

1113
4.3.0 (2024-02-01)
1214
------------------

0 commit comments

Comments
 (0)