mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-28 19:38:26 +01:00
fix SA1119
This commit is contained in:
@@ -88,7 +88,7 @@ namespace Jellyfin.Data.Entities
|
||||
{
|
||||
int value = _Id;
|
||||
GetId(ref value);
|
||||
return (_Id = value);
|
||||
return _Id = value;
|
||||
}
|
||||
|
||||
protected set
|
||||
@@ -128,7 +128,7 @@ namespace Jellyfin.Data.Entities
|
||||
{
|
||||
string value = _Path;
|
||||
GetPath(ref value);
|
||||
return (_Path = value);
|
||||
return _Path = value;
|
||||
}
|
||||
|
||||
set
|
||||
@@ -165,7 +165,7 @@ namespace Jellyfin.Data.Entities
|
||||
{
|
||||
Enums.MediaFileKind value = _Kind;
|
||||
GetKind(ref value);
|
||||
return (_Kind = value);
|
||||
return _Kind = value;
|
||||
}
|
||||
|
||||
set
|
||||
|
||||
Reference in New Issue
Block a user