Merge pull request #400 from hydralauncher/fix/worker-null-error

fix/null-error
This commit is contained in:
Zamitto 2024-05-15 23:26:28 -03:00 committed by GitHub
commit a27a8644ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "hydra", "name": "hydra",
"version": "1.2.0", "version": "1.2.1",
"description": "Hydra", "description": "Hydra",
"main": "./out/main/index.js", "main": "./out/main/index.js",
"author": "Los Broxas", "author": "Los Broxas",

View File

@ -146,6 +146,8 @@ export const getNewRepacksFromOnlineFix = async (
); );
worker.once("message", (torrent) => { worker.once("message", (torrent) => {
if (!torrent) return;
repacks.push({ repacks.push({
fileSize: formatBytes(torrent.length ?? 0), fileSize: formatBytes(torrent.length ?? 0),
magnet: toMagnetURI(torrent), magnet: toMagnetURI(torrent),