diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | lib/network/net_applet/ifw.pm | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- net_applet: + o fix crash if notification queue is not yet initialized (mga#16995) + 2.25 - really update new design for 2016 (Animtim) (mga#18065) diff --git a/lib/network/net_applet/ifw.pm b/lib/network/net_applet/ifw.pm index 4ba5743..3b5c94f 100644 --- a/lib/network/net_applet/ifw.pm +++ b/lib/network/net_applet/ifw.pm @@ -86,6 +86,7 @@ sub handle_ifw_message { } my $is_attack = $message->{prefix} ne 'NEW'; enable_ifw_alert() if $is_attack; + return if !$network::net_applet::notification_queue; $network::net_applet::notification_queue->add({ title => N("Interactive Firewall"), pixbuf => $network::net_applet::pixbufs{firewall}, |