diff options
| author | Bond-009 <bond.009@outlook.com> | 2023-10-11 01:51:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-10 17:51:15 -0600 |
| commit | 26571a8c51b9670f198e58175463e1d3db5441ee (patch) | |
| tree | 7fafbd09d89735c1ecbf8eda28a47cf82266edfe /MediaBrowser.Model/System | |
| parent | dc27d8f9cd3b6cf280ba8e5e2520db387f651fb4 (diff) | |
Deprecate CanLaunchWebBrowser (#10381)
It's been a while since I removed this feature from server not sure why it's
in the api anyway. The macOS and Windows app have this functionality
Diffstat (limited to 'MediaBrowser.Model/System')
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index bd0099af7..502fc38ab 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -84,7 +84,8 @@ namespace MediaBrowser.Model.System [Obsolete("This is always true")] public bool CanSelfRestart { get; set; } = true; - public bool CanLaunchWebBrowser { get; set; } + [Obsolete("This is always false")] + public bool CanLaunchWebBrowser { get; set; } = false; /// <summary> /// Gets or sets the program data path. |
