Skip to content

Commit 383298a

Browse files
Fix null subtitle when creating disk result
1 parent 51f5d8a commit 383298a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ internal static Result CreateFolderResult(string title, string subtitle, string
7171
{
7272
Title = title,
7373
IcoPath = path,
74-
SubTitle = Path.GetDirectoryName(path),
74+
SubTitle = subtitle,
7575
AutoCompleteText = GetAutoCompleteText(title, query, path, ResultType.Folder),
7676
TitleHighlightData = StringMatcher.FuzzySearch(query.Search, title).MatchData,
7777
CopyText = path,

0 commit comments

Comments
 (0)