From c8103693241462d01d132e80046c33554efbcac2 Mon Sep 17 00:00:00 2001 From: makaveli10 Date: Mon, 15 Jan 2024 23:30:05 +0800 Subject: [PATCH] revert the default port of chrom/firefox extension to 9090 --- Audio-Transcription-Chrome/popup.js | 2 +- Audio-Transcription-Firefox/popup.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Audio-Transcription-Chrome/popup.js b/Audio-Transcription-Chrome/popup.js index a1dd210..9a708d1 100644 --- a/Audio-Transcription-Chrome/popup.js +++ b/Audio-Transcription-Chrome/popup.js @@ -73,7 +73,7 @@ document.addEventListener("DOMContentLoaded", function () { // Send a message to the background script to start capturing let host = "localhost"; - let port = "5901"; + let port = "9090"; const useCollaboraServer = useServerCheckbox.checked; if (useCollaboraServer){ host = "transcription.kurg.org" diff --git a/Audio-Transcription-Firefox/popup.js b/Audio-Transcription-Firefox/popup.js index b6785dd..17f8950 100644 --- a/Audio-Transcription-Firefox/popup.js +++ b/Audio-Transcription-Firefox/popup.js @@ -66,7 +66,7 @@ document.addEventListener("DOMContentLoaded", function() { startButton.addEventListener("click", function() { let host = "localhost"; - let port = "5901"; + let port = "9090"; const useCollaboraServer = useServerCheckbox.checked; if (useCollaboraServer){