File tree 2 files changed +7
-1
lines changed
debug_toolbar/static/debug_toolbar/js
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,11 @@ function ajax(url, init) {
75
75
return fetch ( url , init )
76
76
. then ( function ( response ) {
77
77
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
+ } ) ;
79
83
}
80
84
return Promise . reject (
81
85
new Error ( response . status + ": " + response . statusText )
Original file line number Diff line number Diff line change 7
7
* Raised the minimum Django version to 4.2.
8
8
* Automatically support Docker rather than having the developer write a
9
9
workaround for ``INTERNAL_IPS ``.
10
+ * Display a better error message when the toolbar's requests
11
+ return invalid json.
10
12
11
13
4.3.0 (2024-02-01)
12
14
------------------
You can’t perform that action at this time.
0 commit comments