summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2018-03-13 21:04:31 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2018-03-13 21:05:37 +0100
commit879db7012c1c77891895c227ab4094bea8a29ff1 (patch)
tree1e921c3c6dc730a16ff30e4b9a54168feaa2bf9d
parentca6332de6e33be645e1abab3434237805b8f7dfa (diff)
downloadaur-879db7012c1c77891895c227ab4094bea8a29ff1.tar.gz
aur-879db7012c1c77891895c227ab4094bea8a29ff1.zip
notify: Send vote reminders to TUs that are also devs
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rwxr-xr-xaurweb/scripts/notify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/aurweb/scripts/notify.py b/aurweb/scripts/notify.py
index 2d0f757..693abff 100755
--- a/aurweb/scripts/notify.py
+++ b/aurweb/scripts/notify.py
@@ -140,7 +140,7 @@ def get_request_recipients(conn, reqid):
def get_tu_vote_reminder_recipients(conn, vote_id):
cur = conn.execute('SELECT Email FROM Users ' +
- 'WHERE AccountTypeID = 2 AND ID NOT IN ' +
+ 'WHERE AccountTypeID IN (2, 4) AND ID NOT IN ' +
'(SELECT UserID FROM TU_Votes ' +
'WHERE TU_Votes.VoteID = ?)', [vote_id])
return [row[0] for row in cur.fetchall()]