Fix double file separator glitch

This commit is contained in:
danielpetri1 2023-06-14 13:48:46 +00:00
parent 40d990d8a6
commit 84e797e8ee

View File

@ -162,7 +162,7 @@ trait PresentationWithAnnotationsMsgHdlr extends RightsManagementTrait {
PresentationSender.broadcastSetPresentationDownloadableEvtMsg(bus, meetingId, "DEFAULT_PRESENTATION_POD", "not-used", presId, true, filename)
val fileURI = List("presentation", "download", meetingId, s"${presId}?presFilename=${presId}.${presFilenameExt}").mkString(File.separator, File.separator, "")
val fileURI = List("presentation", "download", meetingId, s"${presId}?presFilename=${presId}.${presFilenameExt}").mkString("", File.separator, "")
val event = buildNewPresAnnFileAvailable(fileURI, presId)
handle(event, liveMeeting, bus)