diff options
author | Mario <mario@mariovavti.com> | 2020-04-09 09:38:36 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-04-09 09:38:36 +0000 |
commit | 328685d2fbe505fd5b1bf9892a0cce993210ac52 (patch) | |
tree | 5c2a800872074fa86c284e95382dc6d535cfd9b2 /Zotlabs/Storage/File.php | |
parent | 806c738923b9d880af49a1811d8fbf2c2ee36309 (diff) | |
download | volse-hubzilla-328685d2fbe505fd5b1bf9892a0cce993210ac52.tar.gz volse-hubzilla-328685d2fbe505fd5b1bf9892a0cce993210ac52.tar.bz2 volse-hubzilla-328685d2fbe505fd5b1bf9892a0cce993210ac52.zip |
move from build_sync_packet() to Libsync::build_sync_packet()
Diffstat (limited to 'Zotlabs/Storage/File.php')
-rw-r--r-- | Zotlabs/Storage/File.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Zotlabs/Storage/File.php b/Zotlabs/Storage/File.php index 36aff1e05..68edde166 100644 --- a/Zotlabs/Storage/File.php +++ b/Zotlabs/Storage/File.php @@ -3,6 +3,7 @@ namespace Zotlabs\Storage; use Sabre\DAV; +use Zotlabs\Lib\Libsync; /** * @brief This class represents a file in DAV. @@ -106,7 +107,7 @@ class File extends DAV\Node implements DAV\IFile { if($ch) { $sync = attach_export_data($ch,$this->data['hash']); if($sync) - build_sync_packet($ch['channel_id'],array('file' => array($sync))); + Libsync::build_sync_packet($ch['channel_id'],array('file' => array($sync))); } } @@ -254,7 +255,7 @@ class File extends DAV\Node implements DAV\IFile { $sync = attach_export_data($c[0],$this->data['hash']); if($sync) - build_sync_packet($c[0]['channel_id'],array('file' => array($sync))); + Libsync::build_sync_packet($c[0]['channel_id'],array('file' => array($sync))); } @@ -378,7 +379,7 @@ class File extends DAV\Node implements DAV\IFile { if($ch) { $sync = attach_export_data($ch, $this->data['hash'], true); if($sync) - build_sync_packet($ch['channel_id'], array('file' => array($sync))); + Libsync::build_sync_packet($ch['channel_id'], array('file' => array($sync))); } } } |