This commit is contained in:
Kovid Goyal 2024-11-11 08:42:54 +05:30
commit d805dd8f8a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -94,7 +94,7 @@ class Substack(BasicNewsRecipe):
u = self.recipe_specific_options.get('auths')
if u and isinstance(u, str):
for x in u.split():
ans.append('https://' + x.replace('@', ' ') + '.substack.com/feed')
ans.append('https://' + x.replace('@', '') + '.substack.com/feed')
return ans
def preprocess_html(self, soup):