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:
ObjectAscended
2026-05-16 21:04:55 -07:00
committed by GitHub
parent 1921dc190e
commit 888690ac12
+6 -1
View File
@@ -25,7 +25,12 @@ for (const version of versions) {
console.log(version.replace(/-/g, " ") + " unlocked successfully!");
foundAny = true;
} catch {
} catch (error) {
if (error instanceof Deno.errors.NotFound) {
continue;
}
throw error;
}
}