mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 14:50:17 -04:00
Close the session for preview generation
Without closing the session every preview image generation is locking the session which makes the webinterface unresponsive.
This commit is contained in:
parent
53f6d74938
commit
ba2472575f
1 changed files with 1 additions and 0 deletions
|
|
@ -6,6 +6,7 @@
|
|||
* See the COPYING-README file.
|
||||
*/
|
||||
\OC_Util::checkLoggedIn();
|
||||
\OC::$server->getSession()->close();
|
||||
|
||||
$file = array_key_exists('file', $_GET) ? (string)$_GET['file'] : '';
|
||||
$maxX = array_key_exists('x', $_GET) ? (int)$_GET['x'] : '36';
|
||||
|
|
|
|||
Loading…
Reference in a new issue