aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;