diff options
Diffstat (limited to 'pgcommitfest/commitfest/ajax.py')
-rw-r--r-- | pgcommitfest/commitfest/ajax.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pgcommitfest/commitfest/ajax.py b/pgcommitfest/commitfest/ajax.py index d0e5620..9d53e53 100644 --- a/pgcommitfest/commitfest/ajax.py +++ b/pgcommitfest/commitfest/ajax.py @@ -104,7 +104,7 @@ def doAttachThread(cf, patch, msgid, user): thread.latestmessage=r[-1]['date'] thread.latestauthor=r[-1]['from'] thread.latestsubject=r[-1]['subj'] - thread.altestmsgid=r[-1]['msgid'] + thread.latestmsgid=r[-1]['msgid'] thread.save() return True @@ -163,4 +163,3 @@ def main(request, command): return resp except Http503, e: return HttpResponseServiceUnavailable(e, mimetype='text/plain') - |