Skip to content
Snippets Groups Projects
Commit 97392e35 authored by gbe's avatar gbe
Browse files

Fix storage for comments

parent 683c18bc
No related branches found
No related tags found
No related merge requests found
......@@ -309,6 +309,6 @@ func (v *Vino) StoreComment(ctx context.Context, db *bolt.DB, text string) error
return err
}
return comments.Put(id[:], []byte(text))
return comments.Put([]byte(id.String()), []byte(text))
})
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment