Comment 11 for bug 388116

Revision history for this message
Adam Blackburn (adamblackburn) wrote :

I committed some new code based on comments 9 and 7 for hidden network loading:

        # Read the essid because we need to name those hidden
        # wireless networks now - but only read it if it is hidden.
        if cur_network["hidden"]:
            # check if there is an essid in the config file
            # if there isn't, .get( will return None
            stored_essid = self.config.get(section, 'essid')
            if stored_essid:
                # set the current network's ESSID to the stored one
                cur_network['essid'] = stored_essid

I think this will solve the problem of loading the hidden network ESSIDs.