diff options
| author | Cody Robibero <cody@robibe.ro> | 2025-03-27 19:46:45 -0600 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2025-03-27 19:46:45 -0600 |
| commit | 6c46b06c755c1539a5e743d72318292fea72fe32 (patch) | |
| tree | 909db7b4da21e189b7660d4d7342ea2ffba53718 | |
| parent | f02190c394ad300c00dec4cc4f3b9d42ac6aaca2 (diff) | |
Fix merged namespace error
| -rw-r--r-- | Jellyfin.Server.Implementations/Item/OrderMapper.cs | 2 | ||||
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/Item/OrderMapperTests.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server.Implementations/Item/OrderMapper.cs b/Jellyfin.Server.Implementations/Item/OrderMapper.cs index df2fd08b1..03249b927 100644 --- a/Jellyfin.Server.Implementations/Item/OrderMapper.cs +++ b/Jellyfin.Server.Implementations/Item/OrderMapper.cs @@ -1,8 +1,8 @@ using System; using System.Linq; using System.Linq.Expressions; -using Jellyfin.Data.Entities; using Jellyfin.Data.Enums; +using Jellyfin.Database.Implementations.Entities; using MediaBrowser.Controller.Entities; using Microsoft.EntityFrameworkCore; diff --git a/tests/Jellyfin.Server.Implementations.Tests/Item/OrderMapperTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Item/OrderMapperTests.cs index a6d6b0340..caf2b06b7 100644 --- a/tests/Jellyfin.Server.Implementations.Tests/Item/OrderMapperTests.cs +++ b/tests/Jellyfin.Server.Implementations.Tests/Item/OrderMapperTests.cs @@ -1,6 +1,6 @@ using System; -using Jellyfin.Data.Entities; using Jellyfin.Data.Enums; +using Jellyfin.Database.Implementations.Entities; using Jellyfin.Server.Implementations.Item; using MediaBrowser.Controller.Entities; using Xunit; |
