Disable caching for php-tmdb

This commit is contained in:
DariusIII
2017-08-30 11:19:50 +02:00
parent a10005792d
commit 2c000c8bec
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -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
+1 -1
View File
@@ -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
]
]
);