aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-07-20 10:15:44 +0000
committerMario <mario@mariovavti.com>2024-07-20 10:15:44 +0000
commit82f69018a6acc2b97a1b8871c2cddd625db6798a (patch)
treeec3358e0af13c4d546beeb4118c82fae3931a7c1 /Zotlabs
parentc22f633ae0d42b5a0076a11dd08952817a613342 (diff)
downloadvolse-hubzilla-82f69018a6acc2b97a1b8871c2cddd625db6798a.tar.gz
volse-hubzilla-82f69018a6acc2b97a1b8871c2cddd625db6798a.tar.bz2
volse-hubzilla-82f69018a6acc2b97a1b8871c2cddd625db6798a.zip
sse: more work on notifications
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Sse.php13
1 files changed, 3 insertions, 10 deletions
diff --git a/Zotlabs/Module/Sse.php b/Zotlabs/Module/Sse.php
index df4a74f7b..7be51f864 100644
--- a/Zotlabs/Module/Sse.php
+++ b/Zotlabs/Module/Sse.php
@@ -18,21 +18,14 @@ class Sse extends Controller {
public static $sse_enabled;
function init() {
+ // this is important!
+ session_write_close();
+ ignore_user_abort(true);
if((observer_prohibited(true))) {
killme();
}
- if(! intval(Config::Get('system','open_pubstream',1))) {
- if(! get_observer_hash()) {
- killme();
- }
- }
-
- // this is important!
- session_write_close();
- ignore_user_abort(true);
-
self::$uid = local_channel();
self::$ob_hash = get_observer_hash();
self::$sse_id = false;