From 89a95d30f73ddc10181065eeb37d46866a9ffcf6 Mon Sep 17 00:00:00 2001 From: Ismael Martinez Ramos Date: Thu, 4 Apr 2024 10:55:41 +0100 Subject: [PATCH] adding some extra escape characters for the dots in the url --- app/mainAppWindow/index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/mainAppWindow/index.js b/app/mainAppWindow/index.js index 840d09f1..929997cd 100644 --- a/app/mainAppWindow/index.js +++ b/app/mainAppWindow/index.js @@ -222,7 +222,7 @@ function restoreWindow() { } function processArgs(args) { - var regHttps = /^https:\/\/teams.microsoft.com\/.*(?:meetup-join|channel)/g; + var regHttps = /^https:\/\/teams\.microsoft\.com\/.*(?:meetup-join|channel)/g; var regMS = /^msteams:\/.*(?:meetup-join|channel)/g; logger.debug('processArgs:', args); for (const arg of args) { diff --git a/package.json b/package.json index 288a8839..5e65a4b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "teams-for-linux", - "version": "1.4.17", + "version": "1.4.18", "main": "app/index.js", "description": "Unofficial client for Microsoft Teams for Linux", "homepage": "https://github.com/IsmaelMartinez/teams-for-linux",