X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/e17ba704033aba068a935c1beb42d1f306e6a114..131ae407ca583a8a8086cf94c222c85fa3f5be63:/src/push/forms.py?ds=sidebyside

diff --git a/src/push/forms.py b/src/push/forms.py
index b49096db1..4d8410c0d 100644
--- a/src/push/forms.py
+++ b/src/push/forms.py
@@ -1,6 +1,5 @@
-# -*- coding: utf-8 -*-
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
 #
 from django import forms
 from django.contrib.sites.models import Site
@@ -17,7 +16,11 @@ class NotificationForm(forms.ModelForm):
 
     def save(self, commit=True):
         notification = super(NotificationForm, self).save(commit=commit)
-        wl_base = u'https://' + Site.objects.get_current().domain
-        notification.message_id = send_fcm_push(notification.title, notification.body, wl_base + notification.image.url)
+        wl_base = 'https://' + Site.objects.get_current().domain
+        if notification.image:
+            image_url = wl_base + notification.image.url
+        else:
+            image_url = None
+        notification.message_id = send_fcm_push(notification.title, notification.body, image_url)
         if commit:
             notification.save()