no message
This commit is contained in:
@@ -86,7 +86,7 @@ public class AppendBugReportField extends ComponentsRepositoryPass<BugReport> {
|
||||
new EmailMessage(
|
||||
message_header + " " + Utils.Brackets(Current.getAccount().name),
|
||||
message_text,
|
||||
BugReportInterface.getRecipients(target,true)
|
||||
BugReportInterface.getRecipients(target)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ public class PublishBugReport extends Pass_2021<BugReport> {
|
||||
//3- рассылка
|
||||
EmailMessage message = new EmailMessage("Обнаружена ошибка " + Utils.Brackets(target.id),
|
||||
BugReportInterface.getNewMailText(target),
|
||||
BugReportInterface.getRecipients(target, true));
|
||||
BugReportInterface.getRecipients(target));
|
||||
if (!target.project_version.isEmpty()) {
|
||||
message.addAttachement(BugReportInterface.getArchiveFile(target));
|
||||
//со скринами будет небольшой трабл. потому что теретически возможна ситуация,
|
||||
|
||||
@@ -126,7 +126,7 @@ public class UpdateBugReportField extends ComponentsRepositoryPass<BugReport> {
|
||||
passes.get(PassCode_2021.Email).Do(
|
||||
new EmailMessage(message_header,
|
||||
message_text,
|
||||
BugReportInterface.getRecipients(target, true))
|
||||
BugReportInterface.getRecipients(target))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user