Create const for diagnostic tag.

This commit is contained in:
Benoit Marty 2025-10-26 09:09:10 +01:00 committed by Benoit Marty
parent f0e42a70fb
commit 55517e5cb1

View file

@ -46,7 +46,7 @@ class DefaultNotificationDisplayer(
override fun displayDiagnosticNotification(notification: Notification): Boolean { override fun displayDiagnosticNotification(notification: Notification): Boolean {
return showNotification( return showNotification(
tag = "DIAGNOSTIC", tag = TAG_DIAGNOSTIC,
id = NOTIFICATION_ID_DIAGNOSTIC, id = NOTIFICATION_ID_DIAGNOSTIC,
notification = notification notification = notification
) )
@ -54,12 +54,13 @@ class DefaultNotificationDisplayer(
override fun dismissDiagnosticNotification() { override fun dismissDiagnosticNotification() {
cancelNotification( cancelNotification(
tag = "DIAGNOSTIC", tag = TAG_DIAGNOSTIC,
id = NOTIFICATION_ID_DIAGNOSTIC id = NOTIFICATION_ID_DIAGNOSTIC
) )
} }
companion object { companion object {
private const val TAG_DIAGNOSTIC = "DIAGNOSTIC"
/* ========================================================================================== /* ==========================================================================================
* IDs for notifications * IDs for notifications
* ========================================================================================== */ * ========================================================================================== */