Merge pull request #226 from mike-ferenduros/master

Include Chunky in OPDS reader agents
This commit is contained in:
Sébastien Lucas 2015-11-03 14:30:20 +01:00
commit 30f7a487a8
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
require_once ("resources/doT-php/doT.php");
// If we detect that an OPDS reader try to connect try to redirect to feed.php
if (preg_match("/(MantanoReader|FBReader|Stanza|Marvin|Aldiko|Moon+ Reader)/", $_SERVER['HTTP_USER_AGENT'])) {
if (preg_match("/(MantanoReader|FBReader|Stanza|Marvin|Aldiko|Moon+ Reader|Chunky)/", $_SERVER['HTTP_USER_AGENT'])) {
header("location: feed.php");
exit ();
}