Code clean

pull/5983/head
2dust 2024-11-03 16:45:48 +08:00
parent 258e822c13
commit e0eb73bb0a
7 changed files with 7 additions and 7 deletions

View File

@ -46,7 +46,7 @@
public const string ClashMixinYaml = NamespaceSample + "clash_mixin_yaml";
public const string ClashTunYaml = NamespaceSample + "clash_tun_yaml";
public const string LinuxAutostartConfig = NamespaceSample + "linux_autostart_config";
public const string DefaultSecurity = "auto";
public const string DefaultNetwork = "tcp";
public const string TcpHeaderHttp = "http";

View File

@ -75,7 +75,7 @@ namespace ServiceLib.Handler
{
return;
}
var logonUser = WindowsIdentity.GetCurrent().Name;
using var taskService = new Microsoft.Win32.TaskScheduler.TaskService();
var tasks = taskService.RootFolder.GetTasks(new Regex(taskName));

View File

@ -1197,7 +1197,7 @@ namespace ServiceLib.Handler
{
await RemoveServerViaSubid(config, subid, isSub);
}
profileItem.Subid = subid;
profileItem.IsSub = isSub;
profileItem.PreSocksPort = preSocksPort;

View File

@ -2,6 +2,7 @@
using System.Diagnostics;
using System.Net;
using System.Net.Sockets;
namespace ServiceLib.Services
{
public class SpeedtestService
@ -85,7 +86,7 @@ namespace ServiceLib.Services
private void ExitLoop(string x)
{
if(_exitLoop) return;
if (_exitLoop) return;
_exitLoop = true;
UpdateFunc("", ResUI.SpeedtestingStop);
}

View File

@ -273,7 +273,7 @@ namespace ServiceLib.ViewModels
try
{
Locator.Current.GetService<StatusBarViewModel>()?.UpdateStatistics(update);
if ((update.ProxyUp + update.ProxyDown) > 0 && DateTime.Now.Second % 3 == 0)
if ((update.ProxyUp + update.ProxyDown) > 0 && DateTime.Now.Second % 9 == 0)
{
Locator.Current.GetService<ProfilesViewModel>()?.UpdateStatistics(update);
}

View File

@ -686,7 +686,6 @@ namespace ServiceLib.ViewModels
//ClearTestResult();
_ = new SpeedtestService(_config, lstSelecteds, actionType, UpdateSpeedtestHandler);
}
public void ServerSpeedtestStop()

View File

@ -174,7 +174,7 @@ namespace v2rayN.Desktop.Views
{
switch (action)
{
case EViewAction.CloseWindow:
case EViewAction.CloseWindow:
this.Close(true);
break;