Release 0.2.5: harden proxy and streamline metadata fetching
Remove obsolete rule formats, batch SQLite work, preserve artwork source URLs, and coordinate refresh workers with maintenance. Add regression coverage and 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