Create public post rather than blog post

main
Bob Mottram 2020-10-07 22:10:34 +01:00
parent 007dc311be
commit d1e9f113e3
1 changed files with 9 additions and 8 deletions

View File

@ -94,14 +94,15 @@ def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
followersOnly = False
useBlurhash = False
blog = createBlogPost(baseDir,
'news', domain, port, httpPrefix,
rssDescription, followersOnly, False,
False,
None, None, None, useBlurhash,
None, None, rssTitle,
False,
None, None, None)
commentsEnabled = False
blog = createPublicPost(baseDir,
'news', domain, port, httpPrefix,
rssDescription, followersOnly, False,
False, commentsEnabled,
None, None, None, useBlurhash,
None, None, rssTitle,
False,
None, None, None)
if not blog:
continue