Browse Source

pub/post: add todo about forgery detection

Benton Edmondson 1 year ago
parent
commit
a1a69bcf91
1 changed files with 3 additions and 1 deletions
  1. 3 1
      pub/post.go

+ 3 - 1
pub/post.go

@@ -111,7 +111,7 @@ func (p *Post) Children() Container {
 
 func (p *Post) Parents(quantity uint) ([]Tangible, Tangible) {
 	if quantity == 0 {
-		panic("can't fetch 0 parents")
+		panic("can't fetch zero parents")
 	}
 	if errors.Is(p.parentErr, object.ErrKeyNotPresent) {
 		return []Tangible{}, nil
@@ -145,6 +145,8 @@ func (p *Post) header(width int) string {
 		output += style.Color("comment")
 	}
 
+	/* TODO: forgery checking is needed here; verify that the id of the post
+	   and id of the creators match */
 	if len(p.creators) > 0 {
 		output += " by "
 		for i, creator := range p.creators {