1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 14:18:35 +01:00

[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

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) {