[InstagramBridge] Remove condition that forces cache ignoring

This commit is contained in:
Lyra 2019-09-11 19:28:46 +02:00
parent 48ebed7b38
commit 7aba7992aa
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class InstagramBridge extends BridgeAbstract {
$cache->setKey([$username]);
$key = $cache->loadData();
if($key == null || true) {
if($key == null) {
$data = getContents(self::URI . 'web/search/topsearch/?query=' . $username);
foreach(json_decode($data)->users as $user) {