fix: add debug for .nfo ussues

This commit is contained in:
2025-09-22 10:54:22 -04:00
parent 07b3110c72
commit de3896b8c3
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
1.6.7
1.6.8
+3
View File
@@ -422,9 +422,12 @@ class NFOManager:
try:
# First, check for existing long-named NFO files that need migration
existing_long_nfo = self.find_existing_episode_nfo(season_dir, season_num, episode_num)
print(f" 🔍 Debug: existing_long_nfo = {existing_long_nfo}")
print(f" 🔍 Debug: nfo_path.exists() = {nfo_path.exists()}")
# Try to load existing NFO file (either standard or long-named)
source_nfo_path = nfo_path if nfo_path.exists() else existing_long_nfo
print(f" 🔍 Debug: source_nfo_path = {source_nfo_path}")
if source_nfo_path:
try: