diff options
-rw-r--r-- | app/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/utils.py b/app/utils.py index 67b4015..cd386d4 100644 --- a/app/utils.py +++ b/app/utils.py @@ -190,7 +190,7 @@ def is_package_page(f): def addNotification(target, causer, title, url): - if not isinstance(target, User): + if isinstance(target, Iterable): for x in target: addNotification(x, causer, title, url) return |