diff --git a/main/models.py b/main/models.py
index 7589167365d080bd5f96b059784692890c9ca8d9..59f9453b9739e9ed89d27b1a26315fe8ae64ebc8 100644
--- a/main/models.py
+++ b/main/models.py
@@ -413,7 +413,7 @@ class MainArticlesPage(
         target_date = target_date_list[0] - relativedelta(months=months_back)
         first_day_of_target_month = target_date.replace(day=1)
 
-        filter = models.Q(date__gt=first_day_of_target_month) & search_filter
+        filter = models.Q(date__gte=first_day_of_target_month) & search_filter
 
         sorted_article_qs = self.get_base_shared_articles_query(filter)