You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have used this script for my Jellyfin 10.9.2 on Windows.
I encountered a problem with the date containing 'Z', identical to #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.
The text was updated successfully, but these errors were encountered:
I have used this script for my Jellyfin 10.9.2 on Windows.
I encountered a problem with the date containing 'Z', identical to #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.
The text was updated successfully, but these errors were encountered: