handle multiple receivers in messages

This commit is contained in:
Christophe Benz 2010-11-22 15:06:25 +01:00
commit 18e02f2fea
11 changed files with 46 additions and 34 deletions

View file

@ -69,7 +69,7 @@ class FourChanBackend(BaseBackend, ICapMessages):
id=0, # root message
title=_thread.filename,
sender=_thread.author,
receiver=None,
receivers=None,
date=_thread.datetime,
parent=None,
content=_thread.text,
@ -87,7 +87,7 @@ class FourChanBackend(BaseBackend, ICapMessages):
id=comment.id,
title=_thread.filename,
sender=comment.author,
receiver=None,
receivers=None,
date=comment.datetime,
parent=parent,
content=comment.text,