diff --git a/src/applications/differential/storage/DifferentialComment.php b/src/applications/differential/storage/DifferentialComment.php index 66c22cd0fe..e5ee912957 100644 --- a/src/applications/differential/storage/DifferentialComment.php +++ b/src/applications/differential/storage/DifferentialComment.php @@ -21,6 +21,12 @@ final class DifferentialComment extends DifferentialDAO private $arbitraryDiffForFacebook; private $proxyComment; + public function __clone() { + if ($this->proxyComment) { + $this->proxyComment = clone $this->proxyComment; + } + } + public function getContent() { return $this->getProxyComment()->getContent(); }