Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Finicky/Finicky/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>282</string>
<string>284</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
3 changes: 2 additions & 1 deletion config-api/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
}

/**
Expand Down