mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 02:08:57 +00:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
export function getMockServerPort(
|
|
serverUrl = window.SignalContext.config.serverUrl
|
|
): string {
|
|
const url = new URL(serverUrl);
|
|
return url.port;
|
|
}
|