diff --git a/Finicky/Finicky/Info.plist b/Finicky/Finicky/Info.plist
index 4a8bade..424020f 100644
--- a/Finicky/Finicky/Info.plist
+++ b/Finicky/Finicky/Info.plist
@@ -90,7 +90,7 @@
CFBundleVersion
- 282
+ 284
LSApplicationCategoryType
public.app-category.utilities
LSMinimumSystemVersion
diff --git a/config-api/src/utils.ts b/config-api/src/utils.ts
index 513b29c..808cc42 100644
--- a/config-api/src/utils.ts
+++ b/config-api/src/utils.ts
@@ -59,8 +59,9 @@ export function composeUrl(url: UrlObject) {
let hash = url.hash ? `#${url.hash}` : "";
let auth = url.username ? `${url.username}` : "";
auth += url.password ? `:${url.password}` : "";
+ let slashes = (url.protocol === "msteams") ? "/":"//"
- return `${protocol}://${auth}${host}${port}${pathname}${search}${hash}`;
+ return `${protocol}:${slashes}${auth}${host}${port}${pathname}${search}${hash}`;
}
/**