summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--forum/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/forum/feed.py b/forum/feed.py
index dc74d658..22a075a5 100644
--- a/forum/feed.py
+++ b/forum/feed.py
@@ -22,7 +22,7 @@ class RssLastestQuestionsFeed(Feed):
copyright = settings.APP_COPYRIGHT
def item_link(self, item):
- return self.link + '%s' % item.get_absolute_url()
+ return settings.APP_URL + '%s' % item.get_absolute_url()
def item_author_name(self, item):
return item.author.username