From 2ce514a38eaa5bb73b497d62e0339d00738c1528 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Wed, 24 Aug 2016 09:57:11 -0500 Subject: [PATCH] Fix for change to AO3 author links. --- fanficfare/adapters/adapter_archiveofourownorg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fanficfare/adapters/adapter_archiveofourownorg.py b/fanficfare/adapters/adapter_archiveofourownorg.py index f80fa007..f4aef413 100644 --- a/fanficfare/adapters/adapter_archiveofourownorg.py +++ b/fanficfare/adapters/adapter_archiveofourownorg.py @@ -187,7 +187,7 @@ class ArchiveOfOurOwnOrgAdapter(BaseSiteAdapter): else: for a in alist: self.story.addToList('authorId',a['href'].split('/')[-1]) - self.story.addToList('authorUrl',a['href']) + self.story.addToList('authorUrl','http://'+self.host+a['href']) self.story.addToList('author',a.text) byline = metasoup.find('h3',{'class':'byline'})