Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/cli/Commands/Portal/ListMountSitesCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class ListMountSitesCommandResults
}

/// <summary>
/// this is the data structure representing https://portal.beamable.com/extension-pages.json
/// this is the data structure representing https://console.beamable.com/extension-pages.json
/// </summary>
[Serializable]
public class RemotePortalConfiguration
Expand Down
2 changes: 1 addition & 1 deletion cli/cli/Services/IRemotePortalConfigService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public async Task<RemotePortalConfiguration> GetRemotePortalConfig(CommandArgs a
/// </summary>
private static async Task<RemotePortalConfiguration> FetchRemotePortalConfig(CommandArgs args)
{
var url = "http://localhost:4950/" + "/extension-pages.json";
var url = PortalCommand.GetPortalBaseUrl(args, PortalType.Console) + "/extension-pages.json";
try
{
var client = new HttpClient();
Expand Down
Loading