Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Oct 5, 2023
1 parent e342bc5 commit 6d02e88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djangocms_blog/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def post_content_queryset(self, request=None):
else:
post_contents = PostContent.objects
if self.app_config:
post_contents = post_contents.filter(post__app_confige=self.app_config)
post_contents = post_contents.filter(post__app_config=self.app_config)
if self.current_site:
post_contents = post_contents.on_site(get_current_site(request))
post_contents = post_contents.filter(language=language)
Expand Down

0 comments on commit 6d02e88

Please sign in to comment.