Skip to content

Commit

Permalink
Fix misspelled config item (cachdir) in Site.php
Browse files Browse the repository at this point in the history
  • Loading branch information
daledavies committed Feb 12, 2022
1 parent 0071f13 commit 85b0ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jumpapp/classes/Site.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function get_favicon_datauri(?string $icon = null): string {
if ($icon === null) {
$favicon = new \Favicon\Favicon();
$favicon->cache([
'dir' => $this->config->get('cachdir').'/icons/',
'dir' => $this->config->get('cachedir').'/icons/',
'timeout' => 86400
]);
$rawimage = $favicon->get($this->url, \Favicon\FaviconDLType::RAW_IMAGE);
Expand Down

0 comments on commit 85b0ee5

Please sign in to comment.