mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 23:20:51 +01:00
Replace != null with is not null
This commit is contained in:
parent
c7d50d640e
commit
52194f56b5
218 changed files with 928 additions and 928 deletions
|
|
@ -88,12 +88,12 @@ namespace Jellyfin.Server
|
|||
config.Add(HostWebClientKey, bool.FalseString);
|
||||
}
|
||||
|
||||
if (PublishedServerUrl != null)
|
||||
if (PublishedServerUrl is not null)
|
||||
{
|
||||
config.Add(AddressOverrideKey, PublishedServerUrl);
|
||||
}
|
||||
|
||||
if (FFmpegPath != null)
|
||||
if (FFmpegPath is not null)
|
||||
{
|
||||
config.Add(FfmpegPathKey, FFmpegPath);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue