Skip to content

Commit

Permalink
guid must be a full URL (bug 588788)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Balogh committed Aug 19, 2010
1 parent 43c2e5e commit 780e6fe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/browse/feeds.py
Expand Up @@ -39,8 +39,9 @@ def item_pubdate(self, addon):

def item_guid(self, addon):
"""Guid for a particuar version (<item><guid>)"""
return reverse('addons.versions',
args=[addon.id, addon.current_version])
url = reverse('addons.versions',
args=[addon.id, addon.current_version])
return absolutify(url)


class CategoriesRss(AddonFeedMixin, Feed):
Expand Down

0 comments on commit 780e6fe

Please sign in to comment.