From 6a8b21c5f21d7c641699c0b23eac015f72ece4b2 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Tue, 21 Oct 2025 17:15:00 +0100 Subject: [PATCH] mention 10.11.0 compatibility seems to work, someone opened an issue but closed it right after also. Release notes don't say anything alarming either. --- README.md | 2 +- api-users.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bfd678a..105a7bb 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Studies mean I can't work on this project a lot outside of breaks, however I hope i'll be able to fit in general support and things like bug fixes into my time. New features and such will likely come in short bursts throughout the year (if they do at all). #### Does/Will it still work? -jfa-go currently works on Jellyfin 10.9.8, the latest version as of 31/07/2024. I should be able to maintain compatability in the future, unless any big changes occur. +jfa-go currently works on Jellyfin 10.11.0, the latest version as of 21/10/25. I should be able to maintain compatability in the future, unless any big changes occur. #### Alternatives If you want a bit more of a guarantee of support, I've seen these projects mentioned although haven't tried them myself. diff --git a/api-users.go b/api-users.go index 2b3f894..899ba18 100644 --- a/api-users.go +++ b/api-users.go @@ -1304,5 +1304,6 @@ func (app *appContext) ApplySettings(gc *gin.Context) { if len(errors["policy"]) == len(req.ApplyTo) || len(errors["homescreen"]) == len(req.ApplyTo) { code = 500 } + app.InvalidateUserCaches() gc.JSON(code, errors) }