aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-07-30 21:10:57 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-07-30 21:10:57 +0200
commit8389ff5875309d2c981ca0a7ead4f4b1034ff02a (patch)
tree8756019f204b0381c85decf21ac5a169c47a7128 /apps
parent5b11a18deaed85db34ad7b1e933ae806156c858e (diff)
parent3d0bcb7c4698c75a1da110b779c663a75149d32d (diff)
downloadnextcloud-server-8389ff5875309d2c981ca0a7ead4f4b1034ff02a.tar.gz
nextcloud-server-8389ff5875309d2c981ca0a7ead4f4b1034ff02a.zip
Merge pull request #10054 from owncloud/dont_preload_videos
don't preload videos on public sharing, fixes #10042
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/templates/public.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php
index 386fa7e17cd..8406b79cf1a 100644
--- a/apps/files_sharing/templates/public.php
+++ b/apps/files_sharing/templates/public.php
@@ -42,7 +42,7 @@
</div>
<?php elseif (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'video'): ?>
<div id="imgframe">
- <video tabindex="0" controls="" autoplay="">
+ <video tabindex="0" controls="" preload="none">
<source src="<?php p($_['downloadURL']); ?>" type="<?php p($_['mimetype']); ?>" />
</video>
</div>