You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto taskId = std::wstring(query.GetFirstValueByName(L"TaskId"));
26
+
auto taskId = query.GetFirstValueByName(L"TaskId");
27
27
return make<StartupActivatedEventArgs>(taskId);
28
28
}
29
29
30
30
// IInternalValueMarshalable
31
31
winrt::Windows::Foundation::Uri Serialize()
32
32
{
33
-
auto uri = GenerateEncodedLaunchUri(L"App", c_startupTaskContractId) + L"&TaskId=" + m_taskId;
33
+
auto uri = GenerateEncodedLaunchUri(L"App", c_startupTaskContractId) + L"&TaskId=" + winrt::Windows::Foundation::Uri::EscapeComponent(m_taskId.c_str());
0 commit comments