|
@@ -83,9 +83,9 @@ def import_gamelist_file_to_db_for_system(
|
|
|
english_patched = any(key in game_path.lower() for key in ENGLISH_PATCHED_KEYWORDS)
|
|
|
patch_version = None
|
|
|
if english_patched:
|
|
|
- version_re = re.search ('v(.*?)(?=\))', game_path.lower())
|
|
|
+ version_re = re.search ('(?= v)(.*?)(?=\))', game_path.lower())
|
|
|
if version_re:
|
|
|
- patch_version = version_re.group(0)[:50]
|
|
|
+ patch_version = version_re.group(0)[2:]
|
|
|
undub = any(key in game_path.lower() for key in UNDUB_KEYWORDS)
|
|
|
hack = any(key in game_path.lower() for key in HACK_KEYWORDS)
|
|
|
|