aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/LibraryRoot.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/LibraryRoot.cs')
-rw-r--r--Jellyfin.Data/Entities/LibraryRoot.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jellyfin.Data/Entities/LibraryRoot.cs b/Jellyfin.Data/Entities/LibraryRoot.cs
index d9a4f62e5..16fbc92f6 100644
--- a/Jellyfin.Data/Entities/LibraryRoot.cs
+++ b/Jellyfin.Data/Entities/LibraryRoot.cs
@@ -75,7 +75,7 @@ namespace Jellyfin.Data.Entities
{
int value = _Id;
GetId(ref value);
- return (_Id = value);
+ return _Id = value;
}
protected set
@@ -115,7 +115,7 @@ namespace Jellyfin.Data.Entities
{
string value = _Path;
GetPath(ref value);
- return (_Path = value);
+ return _Path = value;
}
set
@@ -154,7 +154,7 @@ namespace Jellyfin.Data.Entities
{
string value = _NetworkPath;
GetNetworkPath(ref value);
- return (_NetworkPath = value);
+ return _NetworkPath = value;
}
set