LibCore: Stop obsessing about tiny OOMs in Core::Timer

Work towards #20405
This commit is contained in:
Andreas Kling
2024-04-16 20:34:01 +02:00
parent bf1c82724f
commit 1cb5385a29
52 changed files with 111 additions and 113 deletions

View File

@@ -292,7 +292,7 @@ bool HTMLImageElement::uses_srcset_or_picture() const
struct BatchingDispatcher {
public:
BatchingDispatcher()
: m_timer(Core::Timer::create_single_shot(1, [this] { process(); }).release_value_but_fixme_should_propagate_errors())
: m_timer(Core::Timer::create_single_shot(1, [this] { process(); }))
{
}