summaryrefslogtreecommitdiff
path: root/internal/entry/entry.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-11-27 17:14:29 +0200
committerPaul Buetow <paul@buetow.org>2024-11-27 17:14:29 +0200
commit95c45dbd23af40d144533df00b5824793e72ea3a (patch)
treede862d32aa7c36c7918c59a45b6e81ab217bdabd /internal/entry/entry.go
parent89d391bd37e27bc264e92911df12a78354be9a5f (diff)
another fix
Diffstat (limited to 'internal/entry/entry.go')
-rw-r--r--internal/entry/entry.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/entry/entry.go b/internal/entry/entry.go
index d767410..3e21328 100644
--- a/internal/entry/entry.go
+++ b/internal/entry/entry.go
@@ -152,10 +152,11 @@ func (en Entry) HasTag(tag string) bool {
}
// Valid tags are: share:foo[,...]
-// whereas foo can be a supported plutform such as linkedin, mastodon, etc.
+// whereas foo can be a supported platform such as linkedin, mastodon, etc.
// foo can also be prefixed with - to exclude it. See unit tests for examples.
func (en Entry) PlatformExcluded(args config.Args, platformStr string) (bool, error) {
s, err := newShareTags(args, en.tags)
+ fmt.Println(s)
return slices.Contains(s.excludes, platformStr) ||
!slices.Contains(s.includes, platformStr), err
}