Fixing #231 (alternative preferred mimetypes)
This commit is contained in:
parent
f4b7741463
commit
302bc1cda6
|
@ -168,9 +168,10 @@ func createSwitcher(switcher *PartSwitcher, conf *config.AercConfig,
|
|||
if switcher.selected == -1 && pv.part.MIMEType != "multipart" {
|
||||
switcher.selected = i
|
||||
}
|
||||
if selectedPriority == -1 {
|
||||
mime := strings.ToLower(pv.part.MIMEType) +
|
||||
"/" + strings.ToLower(pv.part.MIMESubType)
|
||||
for idx, m := range conf.Viewer.Alternatives {
|
||||
if m != pv.part.MIMEType+"/"+pv.part.MIMESubType {
|
||||
if m != mime {
|
||||
continue
|
||||
}
|
||||
priority := len(conf.Viewer.Alternatives) - idx
|
||||
|
@ -181,7 +182,6 @@ func createSwitcher(switcher *PartSwitcher, conf *config.AercConfig,
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue