Skip to content

Commit

Permalink
fixed config option reference;
Browse files Browse the repository at this point in the history
  • Loading branch information
wiwie committed Feb 11, 2017
1 parent 557e658 commit 483cf01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion atom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
{% elif post.excerpt %}
{{ post.excerpt }}
{% elif post.content %}
{{ post.content.substring(0, config.content_limit) }}
{{ post.content.substring(0, config.feed.content_limit) }}
{% endif %}
</summary>
{% for category in post.categories.toArray() %}
Expand Down
2 changes: 1 addition & 1 deletion rss2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
{% elif post.excerpt %}
{{ post.excerpt }}
{% elif post.content %}
{{ post.content.substring(0, config.content_limit) }}
{{ post.content.substring(0, config.feed.content_limit) }}
{% endif %}
</description>
{% if config.feed.content and post.content %}
Expand Down

0 comments on commit 483cf01

Please sign in to comment.