[PT runner] Misplaced 'return' statement fix (#7202)

This commit is contained in:
Seraphima Zykova
2020-10-12 11:57:50 +03:00
committed by GitHub
parent 889f20c4a7
commit 3807e98f23

View File

@@ -100,9 +100,9 @@ std::optional<std::wstring> dispatch_json_action_to_module(const json::JsonObjec
const auto element = powertoy_element.Value().Stringify();
modules().at(name)->call_custom_action(element.c_str());
}
return result;
}
return result;
}
void send_json_config_to_module(const std::wstring& module_key, const std::wstring& settings)