fix presentation download

this fixes the presentation download. This slipped through in commit
c46556e1f6

Sorry for that.
This commit is contained in:
Daniel Schreiber 2021-12-08 22:32:22 +01:00
parent 9b143e80bc
commit e052b1f773

View File

@ -21,7 +21,7 @@ const downloadPresentationUri = (podId) => {
const presentationFileName = `${currentPresentation.id}.${currentPresentation.name.split('.').pop()}`;
const APP = Meteor.settings.public.app;
const uri = `https://${APP.bbbWebBase}/presentation/download/`
const uri = `${APP.bbbWebBase}/presentation/download/`
+ `${currentPresentation.meetingId}/${currentPresentation.id}`
+ `?presFilename=${encodeURIComponent(presentationFileName)}`;