videomail-client 6.0.0 → 6.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -240,7 +240,9 @@ const Replay = function (parentElement, options) {
240
240
  if (!source) {
241
241
  if (src) {
242
242
  source = h('source', {
243
- src: src,
243
+ // Ensures HTML video thumbnail turns up on iOS, see
244
+ // https://muffinman.io/blog/hack-for-ios-safari-to-display-html-video-thumbnail/
245
+ src: src + '#t=0.001',
244
246
  type: 'video/' + type
245
247
  })
246
248