- commit
- 7f62d77
- parent
- bb22427
- author
- Eric Bower
- date
- 2025-12-06 12:12:38 -0500 EST
fix(pgs): tar.gz mime type
1 files changed,
+2,
-0
1@@ -79,6 +79,8 @@ func GetMimeType(fpath string) string {
2 return "application/zip"
3 case ".rar":
4 return "application/vnd.rar"
5+ case ".tar.gz":
6+ return "application/gzip"
7 case ".txt":
8 return "text/plain"
9 }