From 7bc1f4406fae170ef3d213d6a6e2601395a9d88b Mon Sep 17 00:00:00 2001 From: odecif Date: Fri, 28 Oct 2022 17:13:16 +0200 Subject: [PATCH] Fix for showing dvd or cd when lack of front --- api/modules/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/modules/game.py b/api/modules/game.py index c2c613c..0e4ccf2 100644 --- a/api/modules/game.py +++ b/api/modules/game.py @@ -35,7 +35,7 @@ def game(predefinednfo=False, return_dict=False, skip_artwork=False): i += 1 if 'displayimage' not in nfo['game']: for art in nfo['game']['artwork']: - if art['type'] == 'cd': + if art['type'] in ['cd', 'dvd']: nfo['game']['displayimage'] = reduceartcv2( artpath+art['filename'], 'thumbnail') else: -- 2.47.3