Compare commits

...

2 Commits

Author SHA1 Message Date
httpjamesm 95df8a715b feat: version 1.3.4 2022-12-29 14:54:13 -05:00
httpjamesm f2b369b2c6 fix: remove length requirement 2022-12-29 14:54:05 -05:00
2 changed files with 1 additions and 10 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
package config
var Version = "1.3.3"
var Version = "1.3.4"
-9
View File
@@ -25,15 +25,6 @@ func ViewQuestion(c *gin.Context) {
client := resty.New()
questionId := c.Param("id")
if len(questionId) < 5 {
c.HTML(400, "home.html", gin.H{
"errorMessage": "Invalid question ID",
"theme": c.MustGet("theme").(string),
"version": config.Version,
})
return
}
if _, err := strconv.Atoi(questionId); err != nil {
c.HTML(400, "home.html", gin.H{
"errorMessage": "Invalid question ID",