openwisp / openwisp-notifications

Notifications module of OpenWISP
http://openwisp.org
GNU General Public License v3.0
39 stars 41 forks source link

[fix] Fixed `parse_header` error #259

Closed keshav-04 closed 1 year ago

keshav-04 commented 1 year ago

Recently, Django released its 4.2 version and remove the django.http.multipartparser.parse_header() function, So djangorestframework required version also get changed. So, added the new version of djangorestframework to use django.utils.http.parse_header_parameters() instead of django.http.multipartparser.parse_header(). As it is required by the notification widget.

Before image

After image