Show More
@@ -212,7 +212,7 b' class PostForm(NeboardForm):' | |||
|
212 | 212 | for thread_id in threads_id_list: |
|
213 | 213 | try: |
|
214 | 214 | thread = Post.objects.get(id=int(thread_id)) |
|
215 | if not thread.is_opening(): | |
|
215 | if not thread.is_opening() or thread.get_thread().archived: | |
|
216 | 216 | raise ObjectDoesNotExist() |
|
217 | 217 | threads.append(thread) |
|
218 | 218 | except (ObjectDoesNotExist, ValueError): |
General Comments 0
You need to be logged in to leave comments.
Login now