We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e98fd0 commit 0616b00Copy full SHA for 0616b00
plugins/src/cosmic_toplevel/mod.rs
@@ -160,8 +160,8 @@ impl<W: AsyncWrite + Unpin> App<W> {
160
161
for item in &self.toplevels {
162
let retain = query.is_empty()
163
- || contains_pattern(&item.1.app_id, &haystack)
164
- || contains_pattern(&item.1.title, &haystack);
+ || contains_pattern(&item.1.app_id.to_ascii_lowercase(), &haystack)
+ || contains_pattern(&item.1.title.to_ascii_lowercase(), &haystack);
165
166
if !retain {
167
continue;
0 commit comments