From 9512ec0506eeb23367258ff75150e110852a393d Mon Sep 17 00:00:00 2001 From: David Paleino Date: Sun, 13 Nov 2011 07:57:12 +0100 Subject: [PATCH] Show correct ESSID during connection, thanks to Jonatan! (LP: #755745) --- wicd/networking.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wicd/networking.py b/wicd/networking.py index 43bd946..7140fcd 100644 --- a/wicd/networking.py +++ b/wicd/networking.py @@ -658,6 +658,8 @@ class Wireless(Controller): The name of the currently connected network. """ + if self.connecting_thread and self.connecting_thread.is_connecting: + return self.connecting_thread.network['essid'] return self.wiface.GetCurrentNetwork(iwconfig) def GetBSSID(self):