Skip to content

Commit

Permalink
Revert "Add support for Unix-style path separators" (Wox-launcher#3220)
Browse files Browse the repository at this point in the history
Reverts commit 9eaed68

close Wox-launcher#3180
  • Loading branch information
jhdxr authored Oct 13, 2020
1 parent 0f1de4a commit 642636e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Wox/ViewModel/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,7 @@ private void QueryResults()

ProgressBarVisibility = Visibility.Hidden;

// support unix-style path separators
var queryText = QueryText.Trim().Replace("/", "\\");
var queryText = QueryText.Trim();
Task.Run(() =>
{
if (!string.IsNullOrEmpty(queryText))
Expand Down

0 comments on commit 642636e

Please sign in to comment.