mirror of https://github.com/2dust/v2rayN
Fix subscription ordering
parent
07d2a27b5f
commit
982c865245
|
@ -858,10 +858,18 @@ namespace v2rayN.Handler
|
||||||
profileItem.network = Global.DefaultNetwork;
|
profileItem.network = Global.DefaultNetwork;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var maxSort = -1;
|
||||||
if (Utils.IsNullOrEmpty(profileItem.indexId))
|
if (Utils.IsNullOrEmpty(profileItem.indexId))
|
||||||
{
|
{
|
||||||
profileItem.indexId = Utils.GetGUID(false);
|
profileItem.indexId = Utils.GetGUID(false);
|
||||||
var maxSort = ProfileExHandler.Instance.GetMaxSort();
|
maxSort = ProfileExHandler.Instance.GetMaxSort();
|
||||||
|
}
|
||||||
|
if (!toFile && maxSort < 0)
|
||||||
|
{
|
||||||
|
maxSort = ProfileExHandler.Instance.GetMaxSort();
|
||||||
|
}
|
||||||
|
if (maxSort > 0)
|
||||||
|
{
|
||||||
ProfileExHandler.Instance.SetSort(profileItem.indexId, maxSort + 1);
|
ProfileExHandler.Instance.SetSort(profileItem.indexId, maxSort + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue