Skip to content

Commit

Permalink
Fix the botched cherry-pick in the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DHowett committed Aug 11, 2020
1 parent e354313 commit eff3e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cascadia/TerminalApp/CascadiaSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ void CascadiaSettings::_ResolveDefaultProfile()
const auto unparsedDefaultProfile{ GlobalSettings().UnparsedDefaultProfile() };
if (unparsedDefaultProfile)
{
auto maybeParsedDefaultProfile{ _GetProfileGuidByName(unparsedDefaultProfile) };
auto maybeParsedDefaultProfile{ _GetProfileGuidByName(*unparsedDefaultProfile) };
auto defaultProfileGuid{ Utils::CoalesceOptionals(maybeParsedDefaultProfile, GUID{}) };
GlobalSettings().DefaultProfile(defaultProfileGuid);
}
Expand Down

0 comments on commit eff3e93

Please sign in to comment.