зеркало из https://github.com/mozilla/pjs.git
Bug 737646 - no biff notification if notification-daemon not running. r=karlt
This commit is contained in:
Родитель
c1a577caba
Коммит
570b063d87
|
@ -53,6 +53,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static bool gHasActions = false;
|
static bool gHasActions = false;
|
||||||
|
static bool gHasCaps = false;
|
||||||
|
|
||||||
static void notify_action_cb(NotifyNotification *notification,
|
static void notify_action_cb(NotifyNotification *notification,
|
||||||
gchar *action, gpointer user_data)
|
gchar *action, gpointer user_data)
|
||||||
|
@ -344,6 +345,7 @@ nsAlertsIconListener::InitAlertAsync(const nsAString & aImageUrl,
|
||||||
|
|
||||||
GList *server_caps = notify_get_server_caps();
|
GList *server_caps = notify_get_server_caps();
|
||||||
if (server_caps) {
|
if (server_caps) {
|
||||||
|
gHasCaps = true;
|
||||||
for (GList* cap = server_caps; cap != NULL; cap = cap->next) {
|
for (GList* cap = server_caps; cap != NULL; cap = cap->next) {
|
||||||
if (!strcmp((char*) cap->data, "actions")) {
|
if (!strcmp((char*) cap->data, "actions")) {
|
||||||
gHasActions = true;
|
gHasActions = true;
|
||||||
|
@ -355,6 +357,12 @@ nsAlertsIconListener::InitAlertAsync(const nsAString & aImageUrl,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!gHasCaps) {
|
||||||
|
// if notify_get_server_caps() failed above we need to assume
|
||||||
|
// there is no notification-server to display anything
|
||||||
|
return NS_ERROR_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
if (!gHasActions && aAlertTextClickable)
|
if (!gHasActions && aAlertTextClickable)
|
||||||
return NS_ERROR_FAILURE; // No good, fallback to XUL
|
return NS_ERROR_FAILURE; // No good, fallback to XUL
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче