From 28c8229218c93e67c27eb3adcdafc984f24f2d3c Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 15 Jul 2024 10:16:54 +0000 Subject: always use ob_end_flush() and reduce code duplication --- Zotlabs/Module/Sse.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'Zotlabs') diff --git a/Zotlabs/Module/Sse.php b/Zotlabs/Module/Sse.php index ae8860cd2..df4a74f7b 100644 --- a/Zotlabs/Module/Sse.php +++ b/Zotlabs/Module/Sse.php @@ -133,19 +133,18 @@ class Sse extends Controller { echo "\n\n"; } - if (connection_status() != CONNECTION_NORMAL || connection_aborted()) { + if (ob_get_length() > 0) { ob_end_flush(); - flush(); + } + + flush(); + if (connection_status() != CONNECTION_NORMAL || connection_aborted()) { XConfig::Set(self::$ob_hash, 'sse', 'timestamp', NULL_DATE); XConfig::Set(self::$ob_hash, 'sse', 'notifications', []); - exit; } - ob_flush(); - flush(); - usleep($sleep); if ($result) { -- cgit v1.2.3