mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-03 05:38:51 +00:00
bug fixes
This commit is contained in:
parent
08aebf5736
commit
4f120e8eb4
1 changed files with 1 additions and 1 deletions
|
@ -956,7 +956,7 @@ namespace v2rayN.Handler
|
||||||
//exist sub items
|
//exist sub items
|
||||||
if (isSub && !Utils.IsNullOrEmpty(subid))
|
if (isSub && !Utils.IsNullOrEmpty(subid))
|
||||||
{
|
{
|
||||||
var existItem = lstOriSub?.FirstOrDefault(t => CompareProfileItem(t, profileItem, true));
|
var existItem = lstOriSub?.FirstOrDefault(t => t.isSub == isSub && CompareProfileItem(t, profileItem, true));
|
||||||
if (existItem != null)
|
if (existItem != null)
|
||||||
{
|
{
|
||||||
profileItem.indexId = existItem.indexId;
|
profileItem.indexId = existItem.indexId;
|
||||||
|
|
Loading…
Reference in a new issue