Browse Source

do not popup if we have fake Base64 strings

tags/4.0.1
Syrone Wong 7 years ago
parent
commit
1c8f4168cf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      shadowsocks-csharp/Controller/ShadowsocksController.cs

+ 1
- 1
shadowsocks-csharp/Controller/ShadowsocksController.cs View File

@@ -165,7 +165,7 @@ namespace Shadowsocks.Controller
{
if (ssURL.IsNullOrEmpty() || ssURL.IsWhiteSpace()) return false;
var servers = Server.GetServers(ssURL);
if (servers == null) return false;
if (servers == null || servers.Count == 0) return false;
foreach (var server in servers)
{
_config.configs.Add(server);


Loading…
Cancel
Save