mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-06-28 16:01:35 +02:00
remove hardcoded friendica user agent block (#239)
This commit is contained in:
parent
ffc55e9b15
commit
7e6350b448
@ -20,7 +20,6 @@ package security
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
@ -38,10 +37,4 @@ func (m *Module) UserAgentBlock(c *gin.Context) {
|
|||||||
c.AbortWithStatus(http.StatusTeapot)
|
c.AbortWithStatus(http.StatusTeapot)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if strings.Contains(strings.ToLower(ua), strings.ToLower("friendica")) {
|
|
||||||
l.Debugf("aborting request with user-agent %s because it contains 'friendica'", ua)
|
|
||||||
c.AbortWithStatus(http.StatusTeapot)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user