mediabrowser: bump

imrpvoed UserNotFound error classification, no longer vulnerable to
random 404s from proxies or whatever (for Jellyfin only, not emby)
This commit is contained in:
Harvey Tindall
2025-12-01 12:43:40 +00:00
parent b525b03ef8
commit 320e9cd9d0
8 changed files with 40 additions and 7 deletions

View File

@@ -202,6 +202,7 @@ func (app *appContext) loadRoutes(router *gin.Engine) {
api.GET(p+"/users/count", app.GetUserCount)
api.POST(p+"/users", app.SearchUsers)
api.POST(p+"/users/count", app.GetFilteredUserCount)
api.GET(p+"/users/labels", app.GetLabels)
api.POST(p+"/user", app.NewUserFromAdmin)
api.POST(p+"/users/extend", app.ExtendExpiry)
api.DELETE(p+"/users/:id/expiry", app.RemoveExpiry)