diff --git a/lib/threadingnoticestream.php b/lib/threadingnoticestream.php index c4b35f4092..167a9584a6 100644 --- a/lib/threadingnoticestream.php +++ b/lib/threadingnoticestream.php @@ -60,8 +60,8 @@ class ThreadingNoticeStream extends FilteringNoticeStream function filter($notice) { - if (!array_key_exists($notice->id, $this->seen)) { - $this->seen[$notice->id] = true; + if (!array_key_exists($notice->conversation, $this->seen)) { + $this->seen[$notice->conversation] = true; return true; } else { return false;