Skip to content

Commit

Permalink
Merge pull request #168 from ONLYOFFICE/bugfix/fixed-notify-exception
Browse files Browse the repository at this point in the history
Bugfix/fixed notify exception
  • Loading branch information
pavelbannov authored Jan 23, 2024
2 parents cc1d8de + f6f7c2a commit 31bc9f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/ASC.Web.Core/Notify/StudioNotifyServiceSender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ await client.SendNoticeToAsync(
item.Recipients?.Select(r => r.IsGroup ? new RecipientsGroup(r.Id, r.Name) : (IRecipient)new DirectRecipient(r.Id, r.Name, r.Addresses?.ToArray(), r.CheckActivation)).ToArray(),
item.SenderNames != null && item.SenderNames.Count > 0 ? item.SenderNames.ToArray() : null,
item.CheckSubsciption,
item.Tags.Select(r => new TagValue(r.Key, r.Value)).ToArray());
item.Tags?.Select(r => new TagValue(r.Key, r.Value)).ToArray());
}
}

Expand Down

0 comments on commit 31bc9f6

Please sign in to comment.