aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Zotlabs/Module/Pin.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Module/Pin.php b/Zotlabs/Module/Pin.php
index 63b28754b..af949c0eb 100644
--- a/Zotlabs/Module/Pin.php
+++ b/Zotlabs/Module/Pin.php
@@ -6,8 +6,9 @@ namespace Zotlabs\Module;
*/
use App;
+use Zotlabs\Lib\Libsync;
-class Pin extends \Zotlabs\Web\Controller {
+class Pin extends Zotlabs\Web\Controller {
function init() {
@@ -64,6 +65,6 @@ class Pin extends \Zotlabs\Web\Controller {
http_status_exit(404, 'Not found');
}
- build_sync_packet($r[0]['uid'], [ 'config' ]);
+ Libsync::build_sync_packet($r[0]['uid'], [ 'config' ]);
}
}