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 just spun up a local instance and user pages (and RSS!) load 🎉 but while video thumbnails load, the embedded videos themselves don't ("No video with supported format and MIME type found." in Firefox) and attempting to download or open the video in a new tab goes to an html page saying "not a valid url".
I found the issue in app/Controllers/ProxyControllers.php around Line 42
Pablo's instance is getting streams from v16-webapp-prime.tiktok.com but your (and my!) instance is getting streams from v16-webapp-prime**.us**.tiktok.com which makes $host_count 4 so it fails the if statement. Instead of checking different array elements depending on the length of the array $host_split, I used array_slice to just put the last two elements of $host_split into $host_domain and now it's working as expected:
So glad this project is back.
I just spun up a local instance and user pages (and RSS!) load 🎉 but while video thumbnails load, the embedded videos themselves don't ("No video with supported format and MIME type found." in Firefox) and attempting to download or open the video in a new tab goes to an html page saying "not a valid url".
Here's the path url I get:
And here's what your instance gets for the same video, which works:
Same thing happens for audios.
I can't tell if it's a URL encoding thing or what. PHP issue?
My install is just git clone, docker compose up -d
The text was updated successfully, but these errors were encountered: