django-messages
django-messages copied to clipboard
Sending group message failed under Django 2.2
The solution is, according the documents of Django and based on my test, in file admin.py
, after line 104, you have to add such line:
obj.id = None
Since id
and pk
are equivalent, you have to set both into None
to make it work with that mechanism.