Skip to content

Commit cdff8fc

Browse files
authored
fix: 🐛 check autocomplete and copy text for Result equality (#2201)
1 parent e1c63af commit cdff8fc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Flow.Launcher.Plugin/Result.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,8 @@ public override bool Equals(object obj)
161161

162162
var equality = string.Equals(r?.Title, Title) &&
163163
string.Equals(r?.SubTitle, SubTitle) &&
164+
string.Equals(r?.AutoCompleteText, AutoCompleteText) &&
165+
string.Equals(r?.CopyText, CopyText) &&
164166
string.Equals(r?.IcoPath, IcoPath) &&
165167
TitleHighlightData == r.TitleHighlightData;
166168

0 commit comments

Comments
 (0)