Skip to content

Commit

Permalink
Backwards compatibility hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
xtrinch committed Mar 29, 2022
1 parent d9ebecf commit 7eb45e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fcm_django/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = "xTrinch"
__email__ = "[email protected]"
__version__ = "1.0.9"
__version__ = "1.0.10"


class NotificationError(Exception):
Expand Down
2 changes: 1 addition & 1 deletion fcm_django/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Device(models.Model):
blank=True,
null=True,
on_delete=models.CASCADE,
related_query_name=_("device"),
related_query_name=_("fcmdevice"),
)
date_created = models.DateTimeField(
verbose_name=_("Creation date"), auto_now_add=True, null=True
Expand Down

0 comments on commit 7eb45e4

Please sign in to comment.