Photo uploads: make file extension check case-insensitive

pull/12/head
Noah 2022-08-22 19:29:48 -07:00
parent fb0e3651b0
commit 1131fca16a
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ type UploadConfig struct {
// - error on errors
func UploadPhoto(cfg UploadConfig) (string, string, error) {
// Validate and normalize the extension.
var extension = cfg.Extension
switch cfg.Extension {
var extension = strings.ToLower(cfg.Extension)
switch extension {
case ".jpg":
fallthrough
case ".jpe":