main
Bob Mottram 2020-10-09 11:08:01 +01:00
parent 105daa49e8
commit 5d4fff9398
1 changed files with 4 additions and 0 deletions

View File

@ -99,6 +99,9 @@ def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
followersOnly = False
useBlurhash = False
# NOTE: the id when the post is created will not be
# consistent (it's based on the current time, not the
# published time), so we change that later
blog = createNewsPost(baseDir,
domain, port, httpPrefix,
rssDescription, followersOnly, False,
@ -116,6 +119,7 @@ def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
currTime = datetime.datetime.utcnow()
blog['object']['arrived'] = currTime.strftime("%Y-%m-%dT%H:%M:%SZ")
# change the id, based upon the published time
blog['object']['replies']['id'] = idStr
blog['object']['replies']['first']['partOf'] = idStr