mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
fix: logic bug in 429 caching logic (#3669)
This commit is contained in:
parent
bb7f329e81
commit
409236e48e
@ -90,8 +90,8 @@ class RedditBridge extends BridgeAbstract
|
|||||||
} catch (HttpException $e) {
|
} catch (HttpException $e) {
|
||||||
if ($e->getCode() === 429) {
|
if ($e->getCode() === 429) {
|
||||||
$this->cache->set($cacheKey, true, 60 * 16);
|
$this->cache->set($cacheKey, true, 60 * 16);
|
||||||
throw $e;
|
|
||||||
}
|
}
|
||||||
|
throw $e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -205,8 +205,8 @@ class YoutubeBridge extends BridgeAbstract
|
|||||||
} catch (HttpException $e) {
|
} catch (HttpException $e) {
|
||||||
if ($e->getCode() === 429) {
|
if ($e->getCode() === 429) {
|
||||||
$this->cache->set($cacheKey, true, 60 * 16);
|
$this->cache->set($cacheKey, true, 60 * 16);
|
||||||
throw $e;
|
|
||||||
}
|
}
|
||||||
|
throw $e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user