Merge branch 'master' of github.com:gamedig/node-gamedig

This commit is contained in:
CosminPerRam 2024-01-22 23:14:06 +02:00
commit e89cb125b2
1 changed files with 2 additions and 2 deletions

View File

@ -12,10 +12,10 @@ export const lookup = (options) => {
}
let game = games[type]
if (options.checkOldIDs) {
Object.keys(games).forEach((id) => {
if (games[id]?.extra.old_id) {
if (games[id]?.extra?.old_id === type) {
game = games[id]
}
})