Open Preloading opened 4 days ago
A few more things after digging into it.
Hmm. I wonder if it's not getting a second page for Classic. Maybe Classic isn't sending what I expect to get another page? This happens when Data isn't formatted how I expect or contains an error.
In the /api/v1/videos/{video_id}'s recommended videos, it does not contain the release date of the video
It just doesn't return it. Not much we can do about it besides doing an API call for every video. Not worth doing 10-30 request per search. https://docs.invidious.io/api/#get-apiv1videosid
When you force the date, it just crashes
The app really loves to crash when you send invalid Data. I just set to UTC 0 when No date is given.
Example <published>{{'published' in info and unix(info['published']) or unix('0')}}</published>
<yt:uploaded>1969-12-31T12:33:58.000Z</yt:uploaded>
The app really loves to crash when you send invalid Data. I just set to UTC 0 when No date is given.
Looking and the example you provided, you need to put the actual date, while I just just sending the unix timestamp (since I thought that's what unix() did). That's probably why it crashed.
The app really loves to crash when you send invalid Data. I just set to UTC 0 when No date is given.
Looking and the example you provided, you need to put the actual date, while I just just sending the unix timestamp (since I thought that's what unix() did). That's probably why it crashed.
That's would be why. unix timestamp would make more sense and be you know, more stable but whatever. This is years old code/app we are talking about.
No clue if I should be posting it here, but i'm using this repo. I am running this through docker, and connecting from an iPhone 3G running iOS 4.2.1 thru the classic youtube app. No clue if ios 4.2.1 is actually supported but oh well.