From a0f28708ab125e953157299d13d8ebbea8b77396 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 27 Jul 2018 15:05:29 -0700 Subject: don't sync system apps --- Zotlabs/Lib/Apps.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Zotlabs') diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index 841fffd39..ddaf8c44d 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -527,7 +527,7 @@ class Apps { intval($uid) ); if($r) { - if(! $r[0]['app_system']) { + if(($app['uid']) && (! $r[0]['app_system'])) { if($app['categories'] && (! $app['term'])) { $r[0]['term'] = q("select * from term where otype = %d and oid = %d", intval(TERM_OBJ_APP), @@ -587,8 +587,9 @@ class Apps { intval($uid) ); } - - build_sync_packet($uid,array('app' => $x)); + if(! intval($x[0]['app_system'])) { + build_sync_packet($uid,array('app' => $x)); + } } else { self::app_undestroy($uid,$app); -- cgit v1.2.3