From 797a0bbf5cceea3eaee476432b8f75b3e7de5c9e Mon Sep 17 00:00:00 2001 From: szaimen Date: Sat, 3 Jul 2021 19:25:27 +0200 Subject: [PATCH] fix links to documentation Signed-off-by: szaimen --- lib/Controller/SignalingController.php | 2 +- src/components/AdminSettings/Commands.vue | 2 +- src/components/AdminSettings/MatterbridgeIntegration.vue | 2 +- src/components/AdminSettings/TurnServers.vue | 2 +- src/utils/webrtc/webrtc.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Controller/SignalingController.php b/lib/Controller/SignalingController.php index a92e60745c8..9e89a384c9f 100644 --- a/lib/Controller/SignalingController.php +++ b/lib/Controller/SignalingController.php @@ -455,7 +455,7 @@ protected function getInputStream(): string { * servers. * * See sections "Backend validation" in - * https://nextcloud-talk.readthedocs.io/en/latest/standalone-signaling-api-v1/#backend-validation + * https://nextcloud-talk.readthedocs.io/en/latest/standalone-signaling-api-v1.html#backend-validation * * @PublicPage * diff --git a/src/components/AdminSettings/Commands.vue b/src/components/AdminSettings/Commands.vue index c3d4b22b21a..4af3084355f 100644 --- a/src/components/AdminSettings/Commands.vue +++ b/src/components/AdminSettings/Commands.vue @@ -73,7 +73,7 @@ export default { computed: { commandHint() { return t('spreed', 'Commands are a new beta feature in Nextcloud Talk. They allow you to run scripts on your Nextcloud server. You can define them with our command line interface. An example of a calculator script can be found in our {linkstart}documentation{linkend}.') - .replace('{linkstart}', '') + .replace('{linkstart}', '') .replace('{linkend}', ' ↗') }, }, diff --git a/src/components/AdminSettings/MatterbridgeIntegration.vue b/src/components/AdminSettings/MatterbridgeIntegration.vue index 81301f95738..d3e863639b2 100644 --- a/src/components/AdminSettings/MatterbridgeIntegration.vue +++ b/src/components/AdminSettings/MatterbridgeIntegration.vue @@ -115,7 +115,7 @@ export default { }, customBinaryText() { return t('spreed', 'You can also set the path to the Matterbridge binary manually via the config. Check the {linkstart}Matterbridge integration documentation{linkend} for more information.') - .replace('{linkstart}', '') + .replace('{linkstart}', '') .replace(/{linkend}/g, ' ↗') }, }, diff --git a/src/components/AdminSettings/TurnServers.vue b/src/components/AdminSettings/TurnServers.vue index 4074ad51088..73713f4df45 100644 --- a/src/components/AdminSettings/TurnServers.vue +++ b/src/components/AdminSettings/TurnServers.vue @@ -85,7 +85,7 @@ export default { computed: { documentationHint() { return t('spreed', 'A TURN server is used to proxy the traffic from participants behind a firewall. If individual participants cannot connect to others a TURN server is most likely required. See {linkstart}this documentation{linkend} for setup instructions.') - .replace('{linkstart}', '') + .replace('{linkstart}', '') .replace('{linkend}', ' ↗') }, }, diff --git a/src/utils/webrtc/webrtc.js b/src/utils/webrtc/webrtc.js index 40dd6487187..7b91e08d0ab 100644 --- a/src/utils/webrtc/webrtc.js +++ b/src/utils/webrtc/webrtc.js @@ -622,7 +622,7 @@ export default function initWebRtc(signaling, _callParticipantCollection, _local if (!showedTURNWarning && !signaling.settings.turnservers.length) { showError( t('spreed', 'Could not establish a connection with at least one participant. A TURN server might be needed for your scenario. Please ask your administrator to set one up following {linkstart}this documentation{linkend}.') - .replace('{linkstart}', '') + .replace('{linkstart}', '') .replace('{linkend}', ' ↗'), { timeout: TOAST_PERMANENT_TIMEOUT,