Skip to content
Snippets Groups Projects
Commit 9d1ded87 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

Merge branch '2.8.1.1_messaging_fixes' into '2.8.1.1-Development'

make sure email lists are actually lists

See merge request !1401
parents bcc3fab0 39d94682
No related branches found
No related tags found
3 merge requests!1408catch up with 2.8.1.1, pin zope.sqlalchemy to 2.0,!1405merge 2.8.1.1 to main,!1401make sure email lists are actually lists
Pipeline #10232 passed
Pipeline: workspaces

#10234

    Pipeline: workspaces

    #10233

      ......@@ -71,7 +71,8 @@ class NotificationService(NotificationServiceIF):
      if isinstance(parameters["destination_email"], list):
      receiver_emails = parameters["destination_email"]
      else:
      receiver_emails = [parameters["destination_email"]]
      # sometimes the list gets passed in as a string, split it if needed
      receiver_emails = parameters["destination_email"].split(",")
      # Let's not send emails into the void
      if not receiver_emails:
      ......
      0% Loading or .
      You are about to add 0 people to the discussion. Proceed with caution.
      Finish editing this message first!
      Please register or to comment