mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-01 04:38:50 +00:00
bug fix
This commit is contained in:
parent
47e6eb546d
commit
b147e05794
5 changed files with 7 additions and 5 deletions
|
@ -1,5 +1,4 @@
|
||||||
using System;
|
using System.IO;
|
||||||
using System.IO;
|
|
||||||
using System.Windows.Media;
|
using System.Windows.Media;
|
||||||
|
|
||||||
namespace v2rayN.Converters
|
namespace v2rayN.Converters
|
||||||
|
|
|
@ -95,6 +95,10 @@ namespace v2rayN.Handler
|
||||||
}
|
}
|
||||||
if (!Utils.IsNullOrEmpty(filter))
|
if (!Utils.IsNullOrEmpty(filter))
|
||||||
{
|
{
|
||||||
|
if (filter.Contains("'"))
|
||||||
|
{
|
||||||
|
filter = filter.Replace("'", "");
|
||||||
|
}
|
||||||
sql += $" and a.remarks like '%{filter}%'";
|
sql += $" and a.remarks like '%{filter}%'";
|
||||||
}
|
}
|
||||||
sql += " order by a.sort";
|
sql += " order by a.sort";
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
using Grpc.Core;
|
using Grpc.Core;
|
||||||
using ProtosLib.Statistics;
|
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
using v2rayN.Base;
|
using v2rayN.Base;
|
||||||
|
|
Loading…
Reference in a new issue