Update EpisodeCell.swift

This commit is contained in:
scigward 2025-08-16 23:17:09 +03:00 committed by GitHub
parent 2210e97b3a
commit f9c2f18750
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -707,7 +707,7 @@ private extension EpisodeCell {
Logger.shared.log("Started download for Episode \(self.episodeID + 1): \(self.episode)", type: "Download")
AnalyticsManager.shared.sendEvent(
event: "download",
additionalData: {"episode": self.episodeID + 1, "url": streamUrl}
additionalData: ["episode": self.episodeID + 1, "url": streamUrl]
)
} else {
DropManager.shared.error(message)
@ -1168,4 +1168,4 @@ private struct AsyncImageView: View {
.frame(width: width, height: height)
.cornerRadius(8)
}
}
}