mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
dont pass floats as timestamp to the changepropagator
This commit is contained in:
parent
0789a6433e
commit
5304afbecb
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue