Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem with Zoulou date. #17

Open
JustBeta opened this issue May 20, 2024 · 0 comments
Open

Problem with Zoulou date. #17

JustBeta opened this issue May 20, 2024 · 0 comments

Comments

@JustBeta
Copy link

JustBeta commented May 20, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant