FReply FCrashReportClient::Submit()
{
	bSendData = true;
	StoreCommentAndUpload();
	bShouldWindowBeHidden = true;
	return FReply::Handled();
}
FReply FCrashReportClient::Submit()
{
	if (ErrorReport.HasFilesToUpload())
	{
		// Send analytics.
		GetCrashDescription().SendAnalytics();
	}

	bSendData = true;
	StoreCommentAndUpload();
	bShouldWindowBeHidden = true;
	return FReply::Handled();
}