1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-03 19:39:14 +00:00

Merge pull request #226 from mhaley/patches-no-preload

Don't preload audio attachments.
This commit is contained in:
Andrew Dolgov
2013-06-16 22:43:23 -07:00

View File

@@ -3036,7 +3036,7 @@
if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
$_SESSION["hasMp3"])) {
$entry .= "<audio controls>
$entry .= "<audio preload=\"none\" controls>
<source type=\"$ctype\" src=\"$url\"></source>
</audio>";