diff --git a/lib/private/share/share.php b/lib/private/share/share.php
index d356d6037ff4a3286c83b66633367272f6793897..691a2053a828a4605a455e212dd01e63c9579338 100644
--- a/lib/private/share/share.php
+++ b/lib/private/share/share.php
@@ -946,22 +946,19 @@ class Share extends \OC\Share\Constants {
 		$query->bindValue(4, $user);
 		$query->bindValue(5, \OCP\Share::SHARE_TYPE_LINK);
 
-		$result = $query->execute();
-
-		if ($result === 1) {
-			\OC_Hook::emit('OCP\Share', 'post_set_expiration_date', array(
-				'itemType' => $itemType,
-				'itemSource' => $itemSource,
-				'date' => $date,
-				'uidOwner' => $user
-			));
-		} else {
-			\OCP\Util::writeLog('sharing', "Couldn't set expire date'", \OCP\Util::ERROR);
-		}
+		$query->execute();
 
-		return ($result === 1) ? true : false;
-	}
+		\OC_Hook::emit('OCP\Share', 'post_set_expiration_date', array(
+			'itemType' => $itemType,
+			'itemSource' => $itemSource,
+			'date' => $date,
+			'uidOwner' => $user
+		));
+	
+		return true;
 
+        }
+        
 	/**
 	 * Checks whether a share has expired, calls unshareItem() if yes.
 	 * @param array $item Share data (usually database row)