Skip to content

Commit

Permalink
fixed: external url
Browse files Browse the repository at this point in the history
  • Loading branch information
kewool committed Feb 7, 2024
1 parent f44ec1f commit a1170e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stella_lux",
"version": "3.0.0",
"version": "3.0.1",
"description": "",
"main": "main.js",
"scripts": {
Expand Down
5 changes: 4 additions & 1 deletion src/pages/main/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ let nameTemp = "";
let typeTemp = "";
function detailInfoEvent() {
if (typeTemp === "stream")
ipcRenderer.send("openNewWindow", `https://www.twitch.tv/${nameTemp}`);
ipcRenderer.send(
"openNewWindow",
`https://chzzk.naver.com/live/${nameTemp}`,
);
else if (typeTemp === "space")
ipcRenderer.send("openNewWindow", `https://x.com/i/spaces/${nameTemp}`);
}
Expand Down

0 comments on commit a1170e1

Please sign in to comment.