workaround for blank page need an other solution
This commit is contained in:
parent
3d7534da74
commit
137039d35a
|
@ -26,26 +26,26 @@ OCA\Encryption\Helper::registerFilesystemHooks();
|
||||||
|
|
||||||
stream_wrapper_register( 'crypt', 'OCA\Encryption\Stream' );
|
stream_wrapper_register( 'crypt', 'OCA\Encryption\Stream' );
|
||||||
|
|
||||||
$view = new \OC\Files\View( '/' );
|
$view = new OC_FilesystemView( '/' );
|
||||||
|
|
||||||
$session = new OCA\Encryption\Session( $view );
|
//$session = new \OCA\Encryption\Session( $view );
|
||||||
|
//
|
||||||
if (
|
//if (
|
||||||
! $session->getPrivateKey( \OCP\USER::getUser() )
|
// ! $session->getPrivateKey( \OCP\USER::getUser() )
|
||||||
&& OCP\User::isLoggedIn()
|
// && OCP\User::isLoggedIn()
|
||||||
&& OCA\Encryption\Crypt::mode() == 'server'
|
// && OCA\Encryption\Crypt::mode() == 'server'
|
||||||
) {
|
//) {
|
||||||
|
//
|
||||||
// Force the user to log-in again if the encryption key isn't unlocked
|
// // Force the user to log-in again if the encryption key isn't unlocked
|
||||||
// (happens when a user is logged in before the encryption app is
|
// // (happens when a user is logged in before the encryption app is
|
||||||
// enabled)
|
// // enabled)
|
||||||
OCP\User::logout();
|
// OCP\User::logout();
|
||||||
|
//
|
||||||
header( "Location: " . OC::$WEBROOT.'/' );
|
// header( "Location: " . OC::$WEBROOT.'/' );
|
||||||
|
//
|
||||||
exit();
|
// exit();
|
||||||
|
//
|
||||||
}
|
//}
|
||||||
|
|
||||||
// Register settings scripts
|
// Register settings scripts
|
||||||
OCP\App::registerAdmin( 'files_encryption', 'settings-admin' );
|
OCP\App::registerAdmin( 'files_encryption', 'settings-admin' );
|
||||||
|
|
Loading…
Reference in New Issue