time_zone_content_manager: Collapse auto and default case

Prevents a useless self-assignment from occurring.
merge-requests/60/head
Lioncash 2020-08-14 10:58:55 +07:00
parent e050594706
commit b14277ef97
1 changed files with 1 additions and 3 deletions

@ -73,10 +73,8 @@ TimeZoneContentManager::TimeZoneContentManager(TimeManager& time_manager, Core::
std::string location_name;
const auto timezone_setting = Settings::GetTimeZoneString();
if (timezone_setting == "auto") {
if (timezone_setting == "auto" || timezone_setting == "default") {
location_name = Common::TimeZone::GetDefaultTimeZone();
} else if (timezone_setting == "default") {
location_name = location_name;
} else {
location_name = timezone_setting;
}