1
0
Fork 0
This commit is contained in:
Florian RICHER (MrDev023) 2022-04-17 22:32:27 +02:00
parent 41b191bdd3
commit 5865aa445f
4 changed files with 7 additions and 4 deletions

View file

@ -100,7 +100,7 @@ class Mailer {
MailLoadEvent mailLoadEvent, StreamController streamController) async {
final message =
customMessages[Random.secure().nextInt(customMessages.length)];
await Requests.sendAlert(message);
await Requests.sendAlert(message, type: AlertType.host);
streamController.add(StreamElement(StreamElementType.alert, message));
}
}