diff --git a/hostr/cmd/tools/getContentType.go b/hostr/cmd/tools/getContentType.go index 1b97a3a..379ddc0 100644 --- a/hostr/cmd/tools/getContentType.go +++ b/hostr/cmd/tools/getContentType.go @@ -15,9 +15,6 @@ func GetContentType(event *nostr.Event) (string, bool, error) { contentTypeTag := event.Tags.GetFirst([]string{"type"}) contentType := contentTypeTag.Value() - fmt.Println(*event) - fmt.Println(*contentTypeTag) - if len(contentType) < 1 { return "", true, fmt.Errorf("Content-Type not specified") }