Skip to content

Commit 5efce77

Browse files
add mising semicolons
1 parent 7b4242f commit 5efce77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/common/link-util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import fs from "node:fs";
33
import os from "node:os";
44
import path from "node:path";
55

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

99
/* Fetches the current protocolLaunchers from settings.json */
@@ -13,7 +13,7 @@ const whitelistedProtocols = ConfigUtil.getConfigItem("whitelistedProtocols",[
1313
"mailto:",
1414
"tel:",
1515
"sip:",
16-
])
16+
]);
1717

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

0 commit comments

Comments
 (0)