From 2c000c8bec482f5884d3a3e4bb6ba4bcb5e32c2b Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 30 Aug 2017 11:19:50 +0200 Subject: [PATCH] Disable caching for php-tmdb --- Changelog | 1 + nntmux/Movie.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 54c4466bc..83166e381 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2017-08-30 DariusIII + * Chg: Disable caching for php-tmdb * Chg: Update Tmux class, use Models/Tmux and change usage of $pdo variable * Chg: Update bytesToSizeString function in Utility class 2017-08-29 DariusIII diff --git a/nntmux/Movie.php b/nntmux/Movie.php index 3c834f329..8feca2ba2 100755 --- a/nntmux/Movie.php +++ b/nntmux/Movie.php @@ -176,7 +176,7 @@ class Movie $this->tmdbtoken = new ApiToken(Settings::value('APIs..tmdbkey')); $this->tmdbclient = new TmdbClient($this->tmdbtoken, [ 'cache' => [ - 'path' => NN_TMP + 'enabled' => false ] ] );