From 226de85fdfcd5984adc4864dea1d80847ba169ba Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Wed, 28 Aug 2024 14:07:18 +0800 Subject: [PATCH] * [misc] adjust session close logic for mr. --- module/mr/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/mr/control.php b/module/mr/control.php index f0b744e192..83864225e4 100644 --- a/module/mr/control.php +++ b/module/mr/control.php @@ -44,7 +44,7 @@ class mr extends control } /* Unlock session for wait to get data of repo. */ - session_write_close(); + if(!in_array(strtolower($this->app->methodName), array('linkbug', 'linkstory', 'linktask'))) session_write_close(); } }