mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-07-02 03:01:04 +02:00
refactor: fix new clippy warning
This commit is contained in:
parent
40998475e2
commit
5582dcf373
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ fn parse_desktop_file(path: &Path) -> Option<DesktopFile> {
|
||||||
.for_each(|(key, value)| {
|
.for_each(|(key, value)| {
|
||||||
desktop_file
|
desktop_file
|
||||||
.entry(key.to_string())
|
.entry(key.to_string())
|
||||||
.or_insert_with(Vec::new)
|
.or_default()
|
||||||
.push(value.to_string());
|
.push(value.to_string());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue