From a982aecd5b2f8f36507f6893028232d7f7a4c008 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 13 Nov 2019 13:51:00 +0000 Subject: sse: revert to reset to array --- Zotlabs/Module/Sse.php | 2 +- boot.php | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Module/Sse.php b/Zotlabs/Module/Sse.php index e1778718c..3e46a325c 100644 --- a/Zotlabs/Module/Sse.php +++ b/Zotlabs/Module/Sse.php @@ -83,7 +83,7 @@ class Sse extends Controller { echo 'data: ' . json_encode($result); echo "\n\n"; - set_xconfig(self::$ob_hash, 'sse', 'notifications', ''); + set_xconfig(self::$ob_hash, 'sse', 'notifications', []); set_xconfig(self::$ob_hash, 'sse', 'timestamp', datetime_convert()); unset($result); } diff --git a/boot.php b/boot.php index 9588d2c2a..b0b838231 100755 --- a/boot.php +++ b/boot.php @@ -1839,7 +1839,7 @@ function notice($s) { $t = get_xconfig($hash, 'sse', 'timestamp'); if(datetime_convert('UTC', 'UTC', $t) < datetime_convert('UTC', 'UTC', '- 30 seconds')) { - del_xconfig($hash, 'sse', 'notifications'); + set_xconfig($hash, 'sse', 'notifications', []); } $x = get_xconfig($hash, 'sse', 'notifications'); @@ -1852,7 +1852,6 @@ function notice($s) { if (App::$interactive) { $x['notice']['notifications'][] = $s; - set_xconfig($hash, 'sse', 'timestamp', datetime_convert()); set_xconfig($hash, 'sse', 'notifications', $x); } @@ -1892,7 +1891,7 @@ function info($s) { $t = get_xconfig($hash, 'sse', 'timestamp'); if(datetime_convert('UTC', 'UTC', $t) < datetime_convert('UTC', 'UTC', '- 30 seconds')) { - del_xconfig($hash, 'sse', 'notifications'); + set_xconfig($hash, 'sse', 'notifications', []); } $x = get_xconfig($hash, 'sse', 'notifications'); @@ -1905,7 +1904,6 @@ function info($s) { if(App::$interactive) { $x['info']['notifications'][] = $s; - set_xconfig($hash, 'sse', 'timestamp', datetime_convert()); set_xconfig($hash, 'sse', 'notifications', $x); } -- cgit v1.2.3