diff --git a/__init__.py b/__init__.py index d478ffd..0c3d965 100755 --- a/__init__.py +++ b/__init__.py @@ -536,8 +536,8 @@ def get_default_profile(user_data_path): profile_path = None for section in config.sections(): if section.startswith('Install'): + # Use that last Install section profile_path = config[section].get('Default') - break # in ff 72.0.1, if both an Install section and one with Default=1 are present, the former takes precedence elif config[section].get('Default') == '1' and not profile_path: profile_path = config[section].get('Path')