Merge remote-tracking branch 'origin/develop' into global-status-expiration
[akkoma] / lib / pleroma / workers / cron / digest_emails_worker.ex
index c589a59eb8da754feef4ea1a419ad7d4eb93c193..dd13c3b17f490f95892cc86187fe7ef10f806add 100644 (file)
@@ -31,6 +31,7 @@ defmodule Pleroma.Workers.Cron.DigestEmailsWorker do
 
       from(u in inactive_users_query,
         where: fragment(~s(? ->'digest' @> 'true'), u.email_notifications),
+        where: not is_nil(u.email),
         where: u.last_digest_emailed_at < datetime_add(^now, ^negative_interval, "day"),
         select: u
       )