Release 0.3.4: Jellyfin 12 stable support and audit fixes
Harden proxy permissions and cache behavior, streamline metadata fetching, remove obsolete rules, and validate the stable SDK with expanded regression coverage. Document backup format changes.
This commit is contained in:
@@ -7,6 +7,14 @@ namespace Jellyfin.Plugin.Multilang.Tests;
|
||||
|
||||
public sealed class ItemsProxySortingTests
|
||||
{
|
||||
[Fact]
|
||||
public void TranslationOnlyDoesNotRewriteUpstreamPaging()
|
||||
{
|
||||
var root = JsonNode.Parse("""{"Items":[{"Name":"One"},{"Name":"Two"}],"TotalRecordCount":200,"StartIndex":100}""")!;
|
||||
var original = root.ToJsonString();
|
||||
ItemsProxySorting.Apply(root, new ItemsProxyControls("", "", "", 0, 0, "", "", false), CultureInfo.InvariantCulture, []);
|
||||
Assert.Equal(original, root.ToJsonString());
|
||||
}
|
||||
[Fact]
|
||||
public void GetSortArticlesUsesBuiltInLanguageFallback()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user