fix(postres): Pass tuple of all_ids instead of an array
- Fixes failing build for postgres
This commit is contained in:
parent
b375ee9eef
commit
b6c56ff94f
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ def send(recipients=None, sender=None, subject=None, message=None, text_content=
|
|||
recipients = list(set(recipients))
|
||||
cc = list(set(cc))
|
||||
|
||||
all_ids = recipients + cc
|
||||
all_ids = tuple(recipients + cc)
|
||||
|
||||
unsubscribed = frappe.db.sql_list('''
|
||||
SELECT
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue