From 21b288308f31d15e38f6f33ac4d2d3b5803f6364 Mon Sep 17 00:00:00 2001 From: josdion Date: Sun, 3 Jan 2021 17:57:25 +0200 Subject: [PATCH] subssabbz, subsunacs - fix inconsistent movie/tv naming --- libs/subliminal_patch/providers/subssabbz.py | 2 ++ libs/subliminal_patch/providers/subsunacs.py | 3 +++ 2 files changed, 5 insertions(+) diff --git a/libs/subliminal_patch/providers/subssabbz.py b/libs/subliminal_patch/providers/subssabbz.py index 04c720738..c4bfe1fc6 100644 --- a/libs/subliminal_patch/providers/subssabbz.py +++ b/libs/subliminal_patch/providers/subssabbz.py @@ -40,6 +40,8 @@ def fix_tv_naming(title): "Marvel's Jessica Jones": "Jessica Jones", "DC's Legends of Tomorrow": "Legends of Tomorrow", "Doctor Who (2005)": "Doctor Who", + "Star Trek: Deep Space Nine": "Star Trek DS9", + "Star Trek: The Next Generation": "Star Trek TNG", }, True) diff --git a/libs/subliminal_patch/providers/subsunacs.py b/libs/subliminal_patch/providers/subsunacs.py index d2afb0528..3950f244f 100644 --- a/libs/subliminal_patch/providers/subsunacs.py +++ b/libs/subliminal_patch/providers/subsunacs.py @@ -40,12 +40,15 @@ def fix_tv_naming(title): "Marvel's Iron Fist": "Iron Fist", "DC's Legends of Tomorrow": "Legends of Tomorrow", "Doctor Who (2005)": "Doctor Who", + "Star Trek: Deep Space Nine": "Star Trek DS9", + "Star Trek: The Next Generation": "Star Trek TNG", }, True) def fix_movie_naming(title): return fix_inconsistent_naming(title, {"Back to the Future Part III": "Back to the Future 3", "Back to the Future Part II": "Back to the Future 2", + 'Bill & Ted Face the Music': 'Bill Ted Face the Music', }, True)