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
+2 -2
View File
@@ -164,7 +164,7 @@ func test(app *appContext) {
fmt.Println(n, ":", v)
}
users, err := app.jf.GetUsers(false)
fmt.Printf("GetUsers: err %s maplength %d\n", err, len(users))
fmt.Printf("GetUsers: err %+v maplength %d\n", err, len(users))
fmt.Printf("View output? [y/n]: ")
var choice string
fmt.Scanln(&choice)
@@ -176,7 +176,7 @@ func test(app *appContext) {
var username string
fmt.Scanln(&username)
user, err := app.jf.UserByName(username, false)
fmt.Printf("UserByName (%s): err %v", username, err)
fmt.Printf("UserByName (%s): err %+v", username, err)
out, _ := json.MarshalIndent(user, "", " ")
fmt.Print(string(out))
}