mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 04:48:27 +01:00
Replace == null with is null
This commit is contained in:
@@ -17,7 +17,7 @@ namespace MediaBrowser.Model.Updates
|
||||
[JsonPropertyName("version")]
|
||||
public string Version
|
||||
{
|
||||
get => _version == null ? string.Empty : _version.ToString();
|
||||
get => _version is null ? string.Empty : _version.ToString();
|
||||
|
||||
set => _version = SysVersion.Parse(value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user