解决剪贴板无法识别的问题

pull/514/head
lxl 3 years ago
parent ec8a17d12c
commit 0eb6261540

@ -0,0 +1,7 @@
{
"ExpandedNodes": [
""
],
"SelectedNode": "\\DownKyi.sln",
"PreviewInSolutionExplorer": false
}

@ -2,6 +2,7 @@
using DownKyi.Utils;
using DownKyi.ViewModels;
using Prism.Events;
using System.Text.RegularExpressions;
namespace DownKyi.Services
{

@ -9,6 +9,7 @@ using Prism.Events;
using Prism.Mvvm;
using Prism.Regions;
using System;
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows;
using System.Windows.Threading;
@ -352,7 +353,7 @@ namespace DownKyi.ViewModels
LogManager.Error("OnClipboardUpdated", exc);
return;
}
input = Regex.Replace(input, @"[【]*[^【]*[】 ]", "");
SearchService searchService = new SearchService();
searchService.BiliInput(input + AppConstant.ClipboardId, ViewIndexViewModel.Tag, eventAggregator);
}

Loading…
Cancel
Save