diff --git a/webapp/go/user_handler.go b/webapp/go/user_handler.go index 9fae9f2..01ca71c 100644 --- a/webapp/go/user_handler.go +++ b/webapp/go/user_handler.go @@ -96,6 +96,7 @@ func getIconHandler(c echo.Context) error { username := c.Param("username") ifNoneMatchValue := c.Request().Header.Get("If-None-Match") + ifNoneMatchValue = strings.Trim(ifNoneMatchValue, "\"") log.Println("If-None-Match: ", ifNoneMatchValue) tx, err := dbConn.BeginTxx(ctx, nil)