Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FreeDesktop MetaInfo file #315

Merged
merged 1 commit into from
Aug 1, 2024

Add FreeDesktop MetaInfo file

907fc57
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Add FreeDesktop MetaInfo file #315

Add FreeDesktop MetaInfo file
907fc57
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Aug 1, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (3)

src/windows/room/mod.rs|404 col 39| warning: useless use of format!
--> src/windows/room/mod.rs:404:39
|
404 | ... let msg = format!("This room has no canonical alias to unset");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): "This room has no canonical alias to unset".to_string()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
= note: #[warn(clippy::useless_format)] on by default
src/windows/room/mod.rs|504 col 25| warning: useless use of format!
--> src/windows/room/mod.rs:504:25
|
504 | format!("Cannot currently show value for a tag")
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): "Cannot currently show value for a tag".to_string()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
src/windows/room/mod.rs|507 col 25| warning: useless use of format!
--> src/windows/room/mod.rs:507:25
|
507 | format!("Cannot show a single alias; use :room aliases show instead.")
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): "Cannot show a single alias; use :room aliases show instead.".to_string()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format