diff options
| author | Patrick Barron <barronpm@gmail.com> | 2023-10-02 16:54:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-02 16:54:19 -0400 |
| commit | ab0790271aac8846430c9689dff647eb4ce55078 (patch) | |
| tree | 225eef30d2d0d45041eca06205bf18e105e35622 | |
| parent | f746db9a54caef36bb3b32cf22812a78d97c865d (diff) | |
Apply suggestions from code review
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index e2d2719e5..a8b8e5fb9 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -203,10 +203,10 @@ namespace Emby.Server.Implementations public bool HasPendingRestart { get; private set; } /// <inheritdoc /> - public bool IsShuttingDown { get; set; } + public bool IsShuttingDown { get; private set; } /// <inheritdoc /> - public bool ShouldRestart { get; set; } + public bool ShouldRestart { get; private set; } /// <summary> /// Gets the logger. |
