diff options
-rw-r--r-- | client.go | 11 | ||||
-rw-r--r-- | main.go | 1 |
2 files changed, 6 insertions, 6 deletions
@@ -224,12 +224,13 @@ func PostGet(w http.ResponseWriter, r *http.Request, db *sql.DB){ } } else { collection := GetObjectByIDFromDB(db, inReplyTo) + if collection.Actor != nil { + returnData.Board.Post.Actor = collection.Actor.Id + returnData.Board.InReplyTo = inReplyTo - returnData.Board.Post.Actor = collection.Actor.Id - returnData.Board.InReplyTo = inReplyTo - - if len(collection.OrderedItems) > 0 { - returnData.Posts = append(returnData.Posts, collection.OrderedItems[0]) + if len(collection.OrderedItems) > 0 { + returnData.Posts = append(returnData.Posts, collection.OrderedItems[0]) + } } } @@ -2425,7 +2425,6 @@ func GetActorInstance(path string) (string, string) { } func AddInstanceToIndex(actor string) { - // if local testing enviroment do not add to index re := regexp.MustCompile(`(.+)?(localhost|\d+\.\d+\.\d+\.\d+)(.+)?`) if re.MatchString(actor) { |