We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I have below error when I send a web push message by using send_message("test message")
from push_notifications.models import WebPushDevice try: devices = WebPushDevice.objects.filter(Q(user=request.user)) for d in devices: d.send_message("test message") except Exception as e: print('%s => %s (%s)' % ('Exception: device_reg', e, type(e)))
The environments are Django==2.2.4 django-push-notifications==1.6.1
and the WebPush device info is as below.
Thank you in advance
The text was updated successfully, but these errors were encountered:
Fixed by #674
Sorry, something went wrong.
No branches or pull requests
Hi,
I have below error when I send a web push message by using send_message("test message")
Exception: device_reg => 'Chrome' (<class 'KeyError'>)
The environments are
Django==2.2.4
django-push-notifications==1.6.1
and the WebPush device info is as below.
Thank you in advance
The text was updated successfully, but these errors were encountered: