diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/propagation/recipientpropagator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/propagation/recipientpropagator.php b/apps/files_sharing/lib/propagation/recipientpropagator.php index 86c22a93628..994af049764 100644 --- a/apps/files_sharing/lib/propagation/recipientpropagator.php +++ b/apps/files_sharing/lib/propagation/recipientpropagator.php @@ -144,7 +144,7 @@ class RecipientPropagator { ->setParameter('appid', 'files_sharing', \PDO::PARAM_STR); foreach ($shareIdChunks as $shareIds) { - $sql->setParameter('shareids', $shareIds, Connection::PARAM_INT_ARRAY); + $sql->setParameter('shareids', $shareIds, Connection::PARAM_STR_ARRAY); $result = $sql->execute(); while ($row = $result->fetch()) { |