From 4fa3b420ab974be301bfe5a5861e00b4d06503b3 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 4 Jun 2014 21:02:57 -0700 Subject: duplicate birthday events showing up --- include/zot.php | 7 +++++++ mod/notes.php | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/include/zot.php b/include/zot.php index 578bdde49..9cdcbf2a4 100644 --- a/include/zot.php +++ b/include/zot.php @@ -364,6 +364,13 @@ function zot_refresh($them,$channel = null, $force = false) { if($r) { + // if the dob is the same as what we have stored (disregarding the year), keep the one + // we have as we may have updated the year after sending a notification; and resetting + // to the one we just received would cause us to create duplicated events. + + if(substr($r[0]['abook_dob'],5) == substr($next_birthday,5)) + $next_birthday = $r[0]['abook_dob']; + $current_abook_connected = (($r[0]['abook_flags'] & ABOOK_FLAG_UNCONNECTED) ? 0 : 1); $y = q("update abook set abook_their_perms = %d, abook_dob = '%s' diff --git a/mod/notes.php b/mod/notes.php index e21e4386c..84f8a7093 100644 --- a/mod/notes.php +++ b/mod/notes.php @@ -1,9 +1,9 @@ true); if($_REQUEST['note_text'] || $_REQUEST['note_text'] == '') { @@ -18,7 +18,7 @@ function notes_init(&$a) { build_sync_packet(); } - logger('notes saved.'); + logger('notes saved.', LOGGER_DEBUG); json_return_and_die($ret); } -- cgit v1.2.3