update deps

This commit is contained in:
2025-11-10 14:46:34 +01:00
parent 7376a5dd4d
commit ef9bec3334
15 changed files with 845 additions and 1141 deletions
+3 -3
View File
@@ -66,7 +66,7 @@ export async function openOcrTextInNewTab(options) {
if (popupAvailable) {
try {
popup.opener = null;
} catch (error) {
} catch {
/* ignore */
}
}
@@ -83,7 +83,7 @@ export async function openOcrTextInNewTab(options) {
if (popupAvailable) {
try {
popup.location.replace(url);
} catch (navigationError) {
} catch {
try {
popup.location.href = url;
} catch (secondError) {
@@ -96,7 +96,7 @@ export async function openOcrTextInNewTab(options) {
if (finalWindow) {
try {
finalWindow.opener = null;
} catch (error) {
} catch {
/* ignore */
}
}