mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-04 13:50:39 +00:00
commit raw file
This commit is contained in:
parent
417d861be6
commit
10b412d237
2 changed files with 13 additions and 3 deletions
|
@ -53,7 +53,7 @@ func IsTextFile(data []byte) (string, bool) {
|
|||
|
||||
func IsImageFile(data []byte) (string, bool) {
|
||||
contentType := http.DetectContentType(data)
|
||||
if strings.Index(contentType, "img/") != -1 {
|
||||
if strings.Index(contentType, "image/") != -1 {
|
||||
return contentType, true
|
||||
}
|
||||
return contentType, false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue