don't sync system apps

This commit is contained in:
zotlabs 2018-07-27 15:05:29 -07:00
parent e25d205a7f
commit a0f28708ab

View File

@ -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);