fix SA1119

This commit is contained in:
telans
2020-06-19 21:57:37 +12:00
parent e8e5208fbd
commit afe09612e8
39 changed files with 96 additions and 96 deletions

View File

@@ -83,7 +83,7 @@ namespace Jellyfin.Data.Entities
{
string value = _Outline;
GetOutline(ref value);
return (_Outline = value);
return _Outline = value;
}
set
@@ -121,7 +121,7 @@ namespace Jellyfin.Data.Entities
{
string value = _Plot;
GetPlot(ref value);
return (_Plot = value);
return _Plot = value;
}
set
@@ -159,7 +159,7 @@ namespace Jellyfin.Data.Entities
{
string value = _Tagline;
GetTagline(ref value);
return (_Tagline = value);
return _Tagline = value;
}
set