bugnet icon indicating copy to clipboard operation
bugnet copied to clipboard

Emails sent when user clicks Save and there were no changes

Open Ellingson opened this issue 9 years ago • 0 comments

I have users who don't know that "Cancel" will take them back to the issue list without sending emails to everyone. Instead, they like to click "Save & Return" to get back.

To prevent these empty changelist emails, I added line of code to BugNET PRO 1.5.105.0 in BugNET.BLL\IssueNotificationManager.cs at beginning of method SendIssueNotifications:

public static void SendIssueNotifications(int issueId, IEnumerable<IssueHistory> issueChanges)
{
    // Don't send notifications if change count is zero
    if (issueChanges.Count() == 0) return;

Ellingson avatar May 19 '16 14:05 Ellingson