Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down