fix bad manual application update url

Signed-off-by: Ronni Skansing <rskansing@gmail.com>
This commit is contained in:
Ronni Skansing
2026-02-05 16:16:10 +01:00
parent 63f0ad1044
commit 0c9faec382
5 changed files with 1 additions and 23 deletions

View File

@@ -19,13 +19,6 @@
};
let username = '';
/*
let updateURL = 'https://user.phishing.club/downloads';
if (import.meta.env.DEV) {
updateURL = 'https://localhost:8009/downloads';
}
*/
onMount(() => {
const unsub = appState.subscribe((s) => {
context = {

View File

@@ -41,7 +41,7 @@
const installUpdate = async () => {
try {
if (!isUpdateLocal) {
window.open('https://user.phishing.club/downloads', '_blank');
window.open('https://github.com/phishingclub/phishingclub/releases', '_blank');
} else {
isUpdateAlertVisible = true;
}