Skip to content

Commit

Permalink
add mising semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
jonassorgenfrei committed Dec 27, 2024
1 parent 7b4242f commit 5efce77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/common/link-util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import fs from "node:fs";
import os from "node:os";
import path from "node:path";

import * as ConfigUtil from "./config-util.js"
import * as ConfigUtil from "./config-util.js";
import {html} from "./html.js";

/* Fetches the current protocolLaunchers from settings.json */
Expand All @@ -13,7 +13,7 @@ const whitelistedProtocols = ConfigUtil.getConfigItem("whitelistedProtocols",[
"mailto:",
"tel:",
"sip:",
])
]);

export async function openBrowser(url: URL): Promise<void> {
if (whitelistedProtocols.includes(url.protocol)) {
Expand Down

0 comments on commit 5efce77

Please sign in to comment.