make sure thread slug is accessible to post macro in inbox

This commit is contained in:
2025-08-04 06:18:05 +03:00
parent 3699daa44a
commit acac6ed778

View File

@ -510,7 +510,9 @@ def inbox(username):
'thread_id': row['thread_id'],
'user_id': row['user_id'],
'original_markup': row['original_markup'],
'signature_rendered': row['signature_rendered']
'signature_rendered': row['signature_rendered'],
'thread_slug': row['thread_slug'],
})
return render_template("users/inbox.html", new_posts = new_posts, total_unreads_count = total_unreads_count, all_subscriptions = all_subscriptions)