Skip to content

Commit 698e3d7

Browse files
committed
Merge branch 'master' into develop
2 parents cfc223c + 355a5ff commit 698e3d7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## Unreleased
88

9+
## 1.1.455
10+
11+
### Added
12+
- Hotfix for flash update notifications
13+
914
## 1.1.454
1015

1116
### Added
@@ -2049,7 +2054,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
20492054

20502055
## 0.1.20
20512056

2052-
[Unreleased]: https://github.com/IFRCGo/go-api/compare/1.1.454...HEAD
2057+
[Unreleased]: https://github.com/IFRCGo/go-api/compare/1.1.455...HEAD
2058+
[1.1.455]: https://github.com/IFRCGo/go-api/compare/1.1.454...1.1.455
20532059
[1.1.454]: https://github.com/IFRCGo/go-api/compare/1.1.453...1.1.454
20542060
[1.1.453]: https://github.com/IFRCGo/go-api/compare/1.1.452...1.1.453
20552061
[1.1.452]: https://github.com/IFRCGo/go-api/compare/1.1.451...1.1.452

flash_update/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def share_flash_update(flash_update_share_id):
3333
groups__in=instance.donor_groups.all()
3434
).values_list('email', flat=True)
3535

36-
users_emails = set([*donors_emails, *donor_groups_emails])
36+
users_emails = list(set([*donors_emails, *donor_groups_emails]))
3737
send_notification(
3838
f'Flash Update: {flash_update.title}',
3939
users_emails,

main/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from .celery import app as celery_app
44

55
__all__ = ['celery_app']
6-
__version__ = '1.1.454'
6+
__version__ = '1.1.455'

0 commit comments

Comments
 (0)