Merge pull request 'Adds default mime per gemini spec' (#183) from mime-fix into release2.3.2

Reviewed-on: #183
This commit is contained in:
Sloom Sloum Sluom IV 2020-07-03 17:59:00 -04:00
commit 953ae8e28f
1 changed files with 3 additions and 0 deletions

View File

@ -331,6 +331,9 @@ func Visit(host, port, resource string, td *TofuDigest) (Capsule, error) {
case 2:
mimeAndCharset := strings.Split(header[1], ";")
meta = mimeAndCharset[0]
if meta == "" {
meta = "text/gemini"
}
minMajMime := strings.Split(meta, "/")
if len(minMajMime) < 2 {
return capsule, fmt.Errorf("Improperly formatted mimetype received from server")