From aa4755f45f6646ed63d17716ee835928416de275 Mon Sep 17 00:00:00 2001 From: xljiulang <366193849@qq.com> Date: Sun, 20 Jun 2021 14:03:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=8E=B7=E5=8F=96=E6=9C=80?= =?UTF-8?q?=E4=BC=98ip=E7=AD=96=E7=95=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FastGithub.Scanner/GithubContextCollection.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/FastGithub.Scanner/GithubContextCollection.cs b/FastGithub.Scanner/GithubContextCollection.cs index 99aa50a..8997efa 100644 --- a/FastGithub.Scanner/GithubContextCollection.cs +++ b/FastGithub.Scanner/GithubContextCollection.cs @@ -72,6 +72,7 @@ namespace FastGithub.Scanner return this.contextList .Where(item => item.Domain == domain && item.History.AvailableRate > 0d) .OrderByDescending(item => item.History.AvailableRate) + .ThenByDescending(item => item.Available) .ThenBy(item => item.History.AvgElapsed) .Select(item => item.Address) .FirstOrDefault();