reminders and polls are not sent to signed off users

This commit is contained in:
Sarah Faey 2023-02-06 12:58:11 +01:00
parent de443ac03b
commit 758c2b9d03
3 changed files with 3 additions and 2 deletions

View file

@ -168,7 +168,7 @@ namespace Lieb.Data
HashSet<ulong> userIds = new HashSet<ulong>();
foreach(RaidSignUp signUp in raid.SignUps)
{
if(signUp.LiebUserId.HasValue)
if(signUp.LiebUserId.HasValue && signUp.IsMessageSignUp)
{
userIds.Add(signUp.LiebUserId.Value);
}