diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-25 20:34:36 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-25 20:34:36 -0700 |
commit | bba7fe24e91b5899035df42afb31276a6c6f1d8b (patch) | |
tree | be1cb0b7b8f5dbb5efb61d809851ef291fb82e1d /include/conversation.php | |
parent | bfc2552841ce0a018e70dae16fddf690a892b49d (diff) | |
download | volse-hubzilla-bba7fe24e91b5899035df42afb31276a6c6f1d8b.tar.gz volse-hubzilla-bba7fe24e91b5899035df42afb31276a6c6f1d8b.tar.bz2 volse-hubzilla-bba7fe24e91b5899035df42afb31276a6c6f1d8b.zip |
subtle indicator of your own response verb activity
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index e515fb26a..c6eb7c589 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1053,6 +1053,9 @@ function builtin_activity_puller($item, &$conv_responses) { $conv_responses[$mode][$item['thr_parent']] ++; $conv_responses[$mode][$item['thr_parent'] . '-l'][] = $url; + if(get_observer_hash() && get_observer_hash() === $item['author_xchan']) { + $conv_responses[$mode][$item['thr_parent'] . '-m'] = true; + } // there can only be one activity verb per item so if we found anything, we can stop looking return; |