This commit is contained in:
mordentral
2016-03-04 15:04:54 -05:00
parent 3679675bc3
commit 8b158656ef
3 changed files with 7 additions and 2 deletions

View File

@@ -49,6 +49,9 @@ void UAdvancedExternalUILibrary::ShowWebURLUI(FString URLToShow, TEnumAsByte<EBl
return;
}
URLToShow = URLToShow.Replace(TEXT("http://"), TEXT(""));
URLToShow = URLToShow.Replace(TEXT("https://"), TEXT(""));
ExternalUIInterface->ShowWebURL(URLToShow);
Result = EBlueprintResultSwitch::Type::OnSuccess;
}