reset Room::posts cache on sending new post

This commit is contained in:
ghost 2024-01-27 11:25:32 +02:00
parent 55a3a71909
commit f990c1bc0b

View File

@ -311,6 +311,14 @@ class Room
$session
);
// Reset post list cache for this room
$this->_memory->delete(
[
'\Kevachat\Geminiapp\Controller\Room::posts',
$namespace
]
);
// Success
return $txid;
}