diff --git a/include/sessions.php b/include/sessions.php
index 9044c609ba1e5b445928745b23269265eefced8e..7f61f6dbed02e09871382ae4d8701795be627093 100644
--- a/include/sessions.php
+++ b/include/sessions.php
@@ -106,13 +106,11 @@
 	}
 
 	if (\Config::get_schema_version() >= 0) {
-		if (!\Config::get(\Config::SINGLE_USER_MODE)) {
-			session_set_save_handler('\Sessions\ttrss_open',
-				'\Sessions\ttrss_close', '\Sessions\ttrss_read',
-				'\Sessions\ttrss_write', '\Sessions\ttrss_destroy',
-				'\Sessions\ttrss_gc');
-			register_shutdown_function('session_write_close');
-		}
+		session_set_save_handler('\Sessions\ttrss_open',
+			'\Sessions\ttrss_close', '\Sessions\ttrss_read',
+			'\Sessions\ttrss_write', '\Sessions\ttrss_destroy',
+			'\Sessions\ttrss_gc');
+		register_shutdown_function('session_write_close');
 
 		if (!defined('NO_SESSION_AUTOSTART')) {
 			if (isset($_COOKIE[session_name()])) {