mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-05 16:01:54 +03:00
[FIX] DialogService
This commit is contained in:
parent
711413c52f
commit
aa9b84ba4a
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ private static void checkIfAvailable() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void createNotification(NotificationEvent.NotificationType type, String head, String message) {
|
public static void createNotification(NotificationEvent.NotificationType type, String head, String message) {
|
||||||
if (isNotificationsAvailable()) {
|
if (!isNotificationsAvailable()) {
|
||||||
throw new UnsupportedOperationException("DialogService notifications implementation not available");
|
throw new UnsupportedOperationException("DialogService notifications implementation not available");
|
||||||
}
|
}
|
||||||
notificationImpl.createNotification(type, head, message);
|
notificationImpl.createNotification(type, head, message);
|
||||||
|
|
Loading…
Reference in a new issue