Fixes a glitch that was preventing redirects from getting shown in lynxmode

This commit is contained in:
sloumdrone 2019-10-28 22:14:11 -07:00
parent 86265454d3
commit 3efde7d061
1 changed files with 8 additions and 1 deletions

View File

@ -38,9 +38,16 @@ func IsTextFile(url string) bool {
for _, header := range headers {
if strings.Contains(header, "content-type:") && strings.Contains(header, "text") {
return true
} else if strings.Contains(header, "content-type:") {
return false
}
}
return false
// If we made it here, there is no content-type header.
// So in the event of the unknown, lets render to the
// screen. This will allow redirects to get rendered
// as well.
return true
}
func parseLinks(c string) page {