aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/SystemInfo.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2023-01-17 21:11:32 +0100
committerGitHub <noreply@github.com>2023-01-17 21:11:32 +0100
commit212876b23562f9cf1f5ce7a415f7187d45712c79 (patch)
treea3f613b241891562516280cc226da73f510eb940 /MediaBrowser.Model/System/SystemInfo.cs
parent70a74a8c62d889d2e186fd2a3a27263b4beab3c4 (diff)
parentc59f2a3c46dd3fad42dd987e04e48d6576373b13 (diff)
Merge pull request #9100 from barronpm/refactor-startup
Diffstat (limited to 'MediaBrowser.Model/System/SystemInfo.cs')
-rw-r--r--MediaBrowser.Model/System/SystemInfo.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs
index a82c1c8c0..9e56849c7 100644
--- a/MediaBrowser.Model/System/SystemInfo.cs
+++ b/MediaBrowser.Model/System/SystemInfo.cs
@@ -79,8 +79,9 @@ namespace MediaBrowser.Model.System
/// <summary>
/// Gets or sets a value indicating whether this instance can self restart.
/// </summary>
- /// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>
- public bool CanSelfRestart { get; set; }
+ /// <value><c>true</c>.</value>
+ [Obsolete("This is always true")]
+ public bool CanSelfRestart { get; set; } = true;
public bool CanLaunchWebBrowser { get; set; }