You've already forked brave-origin-unlocker
mirror of
https://github.com/ObjectAscended/brave-origin-unlocker.git
synced 2026-06-21 12:42:34 +00:00
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -25,7 +25,12 @@ for (const version of versions) {
|
|||||||
|
|
||||||
console.log(version.replace(/-/g, " ") + " unlocked successfully!");
|
console.log(version.replace(/-/g, " ") + " unlocked successfully!");
|
||||||
foundAny = true;
|
foundAny = true;
|
||||||
} catch {
|
} catch (error) {
|
||||||
|
if (error instanceof Deno.errors.NotFound) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user