Skip to content

Commit

Permalink
Merge pull request #36 from InfamousSYN/develop
Browse files Browse the repository at this point in the history
Fix option logic conflict
  • Loading branch information
InfamousSYN committed Mar 22, 2022
2 parents 4d0028b + d16696b commit 7326e2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import argparse

# application version
__version__ = "3.0.1"
__version__ = "3.0.2"

# application site
__location__ = "https://rogue.infamoussyn.com/"
Expand Down
5 changes: 3 additions & 2 deletions core/libs/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,8 @@ def set_options():
o.set_wmm_enabled()
o.set_ap_isolate()
o.check_auth()
o.check_hardware_mode()
if(options['80211_preset_profile'] is None):
o.check_hardware_mode()

# 802.1x Configuration
o.set_8021x()
Expand All @@ -1321,4 +1322,4 @@ def set_options():

options = o.__reassemble__()

return options
return options

0 comments on commit 7326e2b

Please sign in to comment.