diff --git a/core/config.go b/core/config.go index e0e5a8b0..4bc8ef2d 100644 --- a/core/config.go +++ b/core/config.go @@ -40,7 +40,7 @@ type ServerConfig struct { PublicDirectory string DataDirectory string Port int - BaseURL string // NOTE: maybe use the one from [SiteConfig]. + BaseURL string // TODO: maybe use the one from [SiteConfig]. TokensSecret string WebhookSecret string Tor bool diff --git a/server/micropub.go b/server/micropub.go index ce147bab..63586c6b 100644 --- a/server/micropub.go +++ b/server/micropub.go @@ -519,7 +519,7 @@ func (m *micropubServer) updateEntryWithProps(e *core.Entry, newProps map[string // NOTE: this ensures that things that were arrays stay as arrays. However, // I should probably improve this such that there is a list of properties // to keep as arrays and others as non-arrays. - // Maybe indielib/microformats.propertyToType properties should always be + // TODO: Maybe indielib/microformats.propertyToType properties should always be // single, the rest always arrays. if newValue, ok := properties[key]; ok { if oldValue, ok := e.Other[key]; ok {