summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-04-27 15:18:13 +0200
committerRobin Appelman <icewind@owncloud.com>2015-04-27 15:18:25 +0200
commit5304afbecb37b841312e35594ef8cba403a4cd8c (patch)
tree438040d0e52f1bec51de1624555bdbe4e9b65474 /apps/files_sharing/lib
parent0789a6433e5b25b5edc3434b2650a067367b9130 (diff)
downloadnextcloud-server-5304afbecb37b841312e35594ef8cba403a4cd8c.tar.gz
nextcloud-server-5304afbecb37b841312e35594ef8cba403a4cd8c.zip
dont pass floats as timestamp to the changepropagator
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/propagation/recipientpropagator.php2
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 9c9fe2bedbf..5b7651f2ce7 100644
--- a/apps/files_sharing/lib/propagation/recipientpropagator.php
+++ b/apps/files_sharing/lib/propagation/recipientpropagator.php
@@ -60,7 +60,7 @@ class RecipientPropagator {
}
if (count($dirtyShares)) {
$this->config->setUserValue($this->userId, 'files_sharing', 'last_propagate', $time);
- $this->changePropagator->propagateChanges($time);
+ $this->changePropagator->propagateChanges(floor($time));
}
}