fix: linux notifications

This commit is contained in:
Raatty 2021-12-24 22:48:45 +13:00
parent dada8bc4dc
commit 1390570e66
1 changed files with 4 additions and 2 deletions

View File

@ -257,12 +257,14 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
icon: icon.toString(),
);
} else if (Platform.isLinux) {
await linuxNotifications.notify(
final notification = await linuxNotifications.notify(
title,
body: body,
replacesId: _linuxNotificationIds[roomId] ?? -1,
replacesId: _linuxNotificationIds[roomId] ?? 0,
appName: AppConfig.applicationName,
appIcon: "im.fluffychat.Fluffychat",
);
_linuxNotificationIds[roomId] = notification.id;
}
}