From 54f6eb7982a562a3526ee3b9be62fa6e9344dbdb Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Wed, 5 Sep 2012 14:43:39 +0200 Subject: Adapt to KittyStore's API change --- hyperkitty/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hyperkitty/api.py') diff --git a/hyperkitty/api.py b/hyperkitty/api.py index 1cea89c..1e8a05f 100644 --- a/hyperkitty/api.py +++ b/hyperkitty/api.py @@ -34,7 +34,7 @@ class ThreadResource(View): def get(self, request, mlist_fqdn, threadid): list_name = mlist_fqdn.split('@')[0] STORE = ThreadSafeStorePool().get() - thread = STORE.get_thread(list_name, threadid) + thread = STORE.get_messages_in_thread(list_name, threadid) if not thread: return HttpResponse(status=404) else: -- cgit