Skip to content

Commit

Permalink
Set IsInternet to always return false
Browse files Browse the repository at this point in the history
  • Loading branch information
maforget committed Jan 31, 2024
1 parent c205a67 commit fe8bcba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ComicRack.Engine/IO/Network/ComicLibraryServerConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@ public ServerOptions Options
[DefaultValue(false)]
public bool IsInternet
{
get;
set;
//Always return false since Public Servers are disabled
get => false;
set => _ = value;
}

[DefaultValue(false)]
Expand Down

0 comments on commit fe8bcba

Please sign in to comment.