diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php
index 99edcf25ec585b7488a6703f1cb690762f09805f..f546ef723739ee2219f05948f7d7c06ecc0338ec 100644
--- a/apps/files_encryption/hooks/hooks.php
+++ b/apps/files_encryption/hooks/hooks.php
@@ -658,7 +658,7 @@ class Hooks {
 		foreach ($allFiles as $path) {
 
 			// check if the user still has access to the file, otherwise delete share key
-			$sharingUsers = $result = \OCP\Share::getUsersSharingFile($path, $user);
+			$sharingUsers = \OCP\Share::getUsersSharingFile($path, $user);
 			if (!in_array(\OCP\User::getUser(), $sharingUsers['users'])) {
 				Keymanager::delShareKey($view, array(\OCP\User::getUser()), $path);
 			}