chore: prepare GoodBuddy 0.8.5

This commit is contained in:
lofyer
2026-08-07 10:45:01 +08:00
parent e20cb447af
commit 17e66a3369
54 changed files with 1306 additions and 1640 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ export function resolveWindowIcon(
function isAllowedExternalUrl(url: string): boolean {
try {
return new URL(url).protocol === 'https:'
return ['http:', 'https:'].includes(new URL(url).protocol)
} catch {
return false
}