feat: Added way to update the local games from romm when IDs change based on IGDB or Retro Achievement ID

Fixes #2
This commit is contained in:
Simeon Radivoev 2026-04-10 02:00:11 +03:00
parent 7948bd24fa
commit 4806f3487a
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
9 changed files with 143 additions and 52 deletions

View file

@ -26,15 +26,7 @@ function spawnServer ()
killSignal: 'SIGUSR1',
onExit (subprocess, exitCode, signalCode)
{
if (exitCode === 1 && retries <= 3)
{
server = spawnServer();
retries++;
} else
{
process.exit();
}
process.exit();
}
});
const rl = createInterface({ input: Readable.fromWeb(s.stdout as any) });