aboutsummaryrefslogtreecommitdiff
path: root/src/phinde/Fetcher.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2020-03-08 23:37:31 +0100
committerChristian Weiske <cweiske@cweiske.de>2020-03-08 23:37:31 +0100
commite9a75e18860a20a7510229d9467a1af87ba4f7b3 (patch)
tree59a5685ff1a7a9a9ff2e200f712d086b77c58e7f /src/phinde/Fetcher.php
parenteca6e9af6dea38f5912c881a5dc05193e1b19848 (diff)
downloadphinde-e9a75e18860a20a7510229d9467a1af87ba4f7b3.tar.gz
phinde-e9a75e18860a20a7510229d9467a1af87ba4f7b3.zip
Fix accept header in crawler
Diffstat (limited to 'src/phinde/Fetcher.php')
-rw-r--r--src/phinde/Fetcher.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/phinde/Fetcher.php b/src/phinde/Fetcher.php
index 7cf11b7..666d7ed 100644
--- a/src/phinde/Fetcher.php
+++ b/src/phinde/Fetcher.php
@@ -29,7 +29,7 @@ class Fetcher
$types = array();
foreach ($actions as $action) {
- $types = array_merge($action::$supportedTypes);
+ $types = array_merge($types, array_keys($action::$supportedTypes));
}
$types = array_unique($types);