Skip to content

Commit ddcb240

Browse files
committed
Use API URL when making a Connection for token troubleshooting.
1 parent e5d22b3 commit ddcb240

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source/CesiumEditor/Private/CesiumIonTokenTroubleshooting.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,8 @@ TSharedRef<SWidget> CesiumIonTokenTroubleshooting::createTokenPanel(
522522
auto pConnection = std::make_shared<Connection>(
523523
ionSession.getAsyncSystem(),
524524
ionSession.getAssetAccessor(),
525-
TCHAR_TO_UTF8(*state.token));
525+
TCHAR_TO_UTF8(*state.token),
526+
TCHAR_TO_UTF8(*getCesiumIonServer(pIonObject)->ApiUrl));
526527

527528
// Don't let this panel be destroyed while the async operations below are in
528529
// progress.

0 commit comments

Comments
 (0)