mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-26 07:53:49 +00:00
Fix (#9274)
This commit is contained in:
parent
eee43288a4
commit
700f98193a
1 changed files with 13 additions and 1 deletions
|
|
@ -1847,7 +1847,19 @@ public static class ConfigHandler
|
|||
}
|
||||
|
||||
//May be standard uri mixed with internal uri
|
||||
var innerUriCount = await AddBatchServers4InnerUri(config, strData, subid, isSub);
|
||||
var innerUriCount = 0;
|
||||
if (Utils.IsBase64String(strData))
|
||||
{
|
||||
innerUriCount = await AddBatchServers4InnerUri(config, Utils.Base64Decode(strData), subid, isSub);
|
||||
}
|
||||
if (innerUriCount < 1)
|
||||
{
|
||||
innerUriCount = await AddBatchServers4InnerUri(config, strData, subid, isSub);
|
||||
}
|
||||
if (innerUriCount < 1)
|
||||
{
|
||||
innerUriCount = await AddBatchServers4InnerUri(config, Utils.Base64Decode(strData), subid, isSub);
|
||||
}
|
||||
if (innerUriCount > 0)
|
||||
{
|
||||
if (counter > 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue