From a05e11c1ff519de920d383d46dd2e95f4989398f Mon Sep 17 00:00:00 2001 From: Alexander Pankratov Date: Sat, 1 Jan 2022 22:49:33 +0300 Subject: [PATCH] Fix: immortal cache of sponsored messages --- src/danog/MadelineProto/Wrappers/Ads.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/danog/MadelineProto/Wrappers/Ads.php b/src/danog/MadelineProto/Wrappers/Ads.php index 977a3d2c2..01f30fa85 100644 --- a/src/danog/MadelineProto/Wrappers/Ads.php +++ b/src/danog/MadelineProto/Wrappers/Ads.php @@ -41,7 +41,7 @@ trait Ads { $peer = (yield from $this->getInfo($peer))['bot_api_id']; $cache = yield $this->sponsoredMessages[$peer]; - if ($cache && $cache[0] < \time()) { + if ($cache && $cache[0] > \time()) { return $cache[1]; } $result = (yield from $this->methodCallAsyncRead('channels.getSponsoredMessages', ['channel' => $peer]))['messages'];