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
Describe the problem (required):
Scalelite gives back podcast and presentation, but not screenshare.
To Reproduce (optional):
fresh install.
Logs (may be required):
The query scalelite-api runs when requesting screenshare:
SELECT "playback_formats".* FROM "playback_formats" INNER JOIN "recordings" ON "recordings"."id" = "playback_formats"."recording_id" WHERE "playback_formats"."format" = 4c15ef688441abdab666da7f6da757164115d7b1-1723209552676 AND "recordings"."record_id" = screenshare ORDER BY "playback_formats"."format" ASC LIMIT 1
Result: empty. Even when directly accessing the webm-file, the frontend says failed unsupported request. Recordings are all not protected, forced them all to false in database.
When i do the lookup manually, i find the neccessary id = 2360:
scalelite=# select * from recordings where record_id = '4c15ef688441abdab666da7f6da757164115d7b1-1723209552676';
id | record_id | meeting_id | name | published | participants | state | starttime | endtime | deleted_at | protected | publish_updated
------+--------------------------------------------------------+---------------+--------------------+-----------+--------------+-----------+-------------------------+-------------------------+------------+-----------+-----------------
2360 | 4c15ef688441abdab666da7f6da757164115d7b1-1723209552676 | 66a2642fb2331 | sample here abcxyz | f | 1 | published | 2024-08-09 13:19:12.676 | 2024-08-09 13:19:47.916 | | f | f
(1 row)
"playback_formats"."format" = 4c15ef688441abdab666da7f6da757164115d7b1-1723209552676 AND "recordings"."record_id" = screenshare
format and record_id are swapped. It's an old bug, I stumbled across this more than a year ago. But when I fixed protected recordings in #1083 , I didn't notice it anymore for some reason. I have to take a look at it soon (although in our instance we don't serve screenshare format).
Deployment (required):
Describe the problem (required):
Scalelite gives back podcast and presentation, but not screenshare.
To Reproduce (optional):
fresh install.
Logs (may be required):
The query scalelite-api runs when requesting screenshare:
Result: empty. Even when directly accessing the webm-file, the frontend says failed unsupported request. Recordings are all not protected, forced them all to false in database.
When i do the lookup manually, i find the neccessary id = 2360:
So, to verify this, i run:
What might there be wrong?
The text was updated successfully, but these errors were encountered: