dont pass floats as timestamp to the changepropagator

This commit is contained in:
Robin Appelman 2015-04-27 15:18:13 +02:00
parent 0789a6433e
commit 5304afbecb
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class RecipientPropagator {
} }
if (count($dirtyShares)) { if (count($dirtyShares)) {
$this->config->setUserValue($this->userId, 'files_sharing', 'last_propagate', $time); $this->config->setUserValue($this->userId, 'files_sharing', 'last_propagate', $time);
$this->changePropagator->propagateChanges($time); $this->changePropagator->propagateChanges(floor($time));
} }
} }