You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 18, 2019. It is now read-only.
When calling DELETE django rest framework using core api, it throws an exception.
The cause for this is that DRF removed the header for content type on 204 responses. In this line the result from calling get over the Headers object when that header doesn't exist is null. However in this line the check is made for undefined not null. This check fails, causing it to fail in this line by dereferencing null.