From a7ebdb78ab97df4e1d89c718956438c3b9da33e7 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Sat, 13 Jul 2019 10:20:17 -0500 Subject: [PATCH] Fix XF2 elided threadmarks fetch. --- fanficfare/adapters/base_xenforo2forum_adapter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fanficfare/adapters/base_xenforo2forum_adapter.py b/fanficfare/adapters/base_xenforo2forum_adapter.py index 41b43c71..a096e6e5 100644 --- a/fanficfare/adapters/base_xenforo2forum_adapter.py +++ b/fanficfare/adapters/base_xenforo2forum_adapter.py @@ -155,7 +155,7 @@ class BaseXenForo2ForumAdapter(BaseXenForoForumAdapter): def get_threadmark_range_url(self,tm_item,tmcat_num): fetcher = tm_item.find('div',{'data-xf-click':'threadmark-fetcher'}) # logger.debug(fetcher) - return fetcher['data-fetchurl'] + return self.getURLPrefix() + fetcher['data-fetchurl'] def get_threadmark_date(self,tm_item): return self.make_date(tm_item)