From cdff8fcd7ce17321fe53c089717d5364f678da6d Mon Sep 17 00:00:00 2001 From: James Date: Sun, 25 Jun 2023 01:46:27 +1200 Subject: [PATCH] fix: :bug: check autocomplete and copy text for `Result` equality (#2201) --- Flow.Launcher.Plugin/Result.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Flow.Launcher.Plugin/Result.cs b/Flow.Launcher.Plugin/Result.cs index 1c4467762..ec976bdca 100644 --- a/Flow.Launcher.Plugin/Result.cs +++ b/Flow.Launcher.Plugin/Result.cs @@ -161,6 +161,8 @@ namespace Flow.Launcher.Plugin var equality = string.Equals(r?.Title, Title) && string.Equals(r?.SubTitle, SubTitle) && + string.Equals(r?.AutoCompleteText, AutoCompleteText) && + string.Equals(r?.CopyText, CopyText) && string.Equals(r?.IcoPath, IcoPath) && TitleHighlightData == r.TitleHighlightData;