This commit is contained in:
redmatrix 2015-09-11 14:57:26 -07:00
commit d96ca61f2b

View File

@ -1068,8 +1068,11 @@ function zot_import($arr, $sender_url) {
$data = json_decode(crypto_unencapsulate($data,get_config('system','prvkey')),true);
}
if(! $data['success'])
if(! $data['success']) {
if($data['message'])
logger('remote pickup failed: ' . $data['message']);
return false;
}
$incoming = $data['pickup'];