Compare commits

...

3 Commits

Author SHA1 Message Date
httpjamesm f7209802ce Merge branch 'origin/main' 2024-03-09 12:10:29 -05:00
httpjamesm 880f27b786 docs: version 1.11.0 2024-03-09 12:10:18 -05:00
httpjamesm 4c62f9bc4f feat: allow answerId in shorthand overflow URL (#91) 2024-03-09 12:09:17 -05:00
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
package config
var Version = "1.10.1"
var Version = "1.11.0"
+1
View File
@@ -52,6 +52,7 @@ func main() {
r.GET("/a/:id", routes.RedirectShortenedOverflowURL)
r.GET("/q/:id", routes.RedirectShortenedOverflowURL)
r.GET("/q/:id/:answerId", routes.RedirectShortenedOverflowURL)
r.GET("/questions/:id", func(c *gin.Context) {
// redirect user to the question with the title
+2 -1
View File
@@ -11,6 +11,7 @@ import (
func RedirectShortenedOverflowURL(c *gin.Context) {
id := c.Param("id")
answerId := c.Param("answerId")
// fetch the stack overflow URL
client := resty.New()
@@ -20,7 +21,7 @@ func RedirectShortenedOverflowURL(c *gin.Context) {
}),
)
resp, err := client.R().Get(fmt.Sprintf("https://www.stackoverflow.com/a/%s", id))
resp, err := client.R().Get(fmt.Sprintf("https://www.stackoverflow.com/a/%s/%s", id, answerId))
if err != nil {
c.HTML(400, "home.html", gin.H{
"errorMessage": "Unable to fetch stack overflow URL",