Jellyfin-Migrator
Jellyfin-Migrator copied to clipboard
Problem with Zoulou date.
I have used this script for my Jellyfin 10.9.2 on Windows. I encountered a problem with the date containing 'Z', identical to https://github.com/MMMZZZZ/Jellyfin-Migrator/issues/5. I used Python 3.11.9 to execute the script. For correct execution, I modified the script by adding three lines at line number 1176 in the original script. These lines add: s += "+00:00" index = s.find("Z") if index > -1: s = s.replace("Z", "") t = int(datetime.datetime.fromisoformat(s).timestamp())
This modification resolves the date error, and the script executes successfully.
Question: I'm not an expert on Jellyfin, could you confirm if my modification is not a problem for the correct functionality? Excuse my English, I'm French.