We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b54f1f commit b1126b9Copy full SHA for b1126b9
1 file changed
backend/handler/scan_handler.py
@@ -541,6 +541,16 @@ async def fetch_hasheous_rom(hasheous_rom: HasheousRom) -> HasheousRom:
541
if igdb_handler_rom.get("igdb_id"):
542
rom_attrs.update({**igdb_handler_rom})
543
544
+ # Screenshots are a special case
545
+ rom_attrs["url_screenshots"] = (
546
+ igdb_handler_rom.get("url_screenshots", [])
547
+ or ss_handler_rom.get("url_screenshots", [])
548
+ or moby_handler_rom.get("url_screenshots", [])
549
+ or ra_handler_rom.get("url_screenshots", [])
550
+ or hasheous_handler_rom.get("url_screenshots", [])
551
+ or launchbox_handler_rom.get("url_screenshots", [])
552
+ )
553
+
554
# Stop IDs from getting overridden by empty values
555
rom_attrs.update(
556
{
0 commit comments