mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-08 23:33:03 +01:00
fix SA1503 for one line if statements
This commit is contained in:
@@ -42,7 +42,11 @@ namespace Jellyfin.Data.Entities
|
||||
|
||||
this.UrlId = urlid;
|
||||
|
||||
if (_musicalbum0 == null) throw new ArgumentNullException(nameof(_musicalbum0));
|
||||
if (_musicalbum0 == null)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(_musicalbum0));
|
||||
}
|
||||
|
||||
_musicalbum0.Tracks.Add(this);
|
||||
|
||||
this.Releases = new HashSet<Release>();
|
||||
|
||||
Reference in New Issue
Block a user