Skip to content

Commit fbc6a54

Browse files
committed
Fix clippy lints
1 parent 3d6e0bd commit fbc6a54

File tree

6 files changed

+9
-17
lines changed

6 files changed

+9
-17
lines changed

scripty_audio_handler/src/events/voice_tick.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ async fn handle_speakers(ssrc_state: Arc<SsrcMaps>, metrics: Arc<Metrics>, voice
363363
if ssrc_state
364364
.ssrc_ignored_map
365365
.get(&ssrc)
366-
.map_or(false, |x| *x.value())
366+
.is_some_and(|x| *x.value())
367367
{
368368
continue;
369369
}
@@ -372,7 +372,7 @@ async fn handle_speakers(ssrc_state: Arc<SsrcMaps>, metrics: Arc<Metrics>, voice
372372
if ssrc_state
373373
.ssrc_user_data_map
374374
.get(&ssrc)
375-
.map_or(false, |x| !x.value().2)
375+
.is_some_and(|x| !x.value().2)
376376
{
377377
continue;
378378
}

scripty_bot_utils/src/generic_audio_message.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,10 @@ pub async fn handle_message(ctx: &Context, msg: Message) -> Result<(), GenericMe
101101
};
102102

103103
// does the message have the voice message flag?
104-
if msg.flags.map_or(false, |flags| {
105-
flags.contains(MessageFlags::IS_VOICE_MESSAGE)
106-
}) {
104+
if msg
105+
.flags
106+
.is_some_and(|flags| flags.contains(MessageFlags::IS_VOICE_MESSAGE))
107+
{
107108
debug!(%msg.id, "message is a voice message, ignoring");
108109
return Ok(());
109110
}

scripty_commands/src/cmds/admin/mod.rs

-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ mod guild_check;
55
mod hash_user_id;
66
mod shutdown;
77

8-
pub use cache_info::cache_info;
9-
pub use guild_check::*;
10-
pub use hash_user_id::hash_user_id;
11-
pub use shutdown::shutdown;
12-
138
#[poise::command(
149
prefix_command,
1510
hide_in_help,

scripty_commands/src/cmds/premium/info.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub async fn premium_info(ctx: Context<'_>) -> Result<(), Error> {
5252
)
5353
.fetch_optional(db)
5454
.await?;
55-
let trial_used = res.as_ref().map_or(false, |row| row.trial_used);
55+
let trial_used = res.as_ref().is_some_and(|row| row.trial_used);
5656
if !trial_used {
5757
embed_builder = embed_builder.field(
5858
format_message!(
@@ -76,7 +76,7 @@ pub async fn premium_info(ctx: Context<'_>) -> Result<(), Error> {
7676
)
7777
.fetch_optional(db)
7878
.await?
79-
.map_or(false, |row| row.has_premium);
79+
.is_some_and(|row| row.has_premium);
8080
if user_has_premium {
8181
let claim_command = "`/premium claim`";
8282
embed_builder = embed_builder.field(

scripty_commands/src/cmds/premium/mod.rs

-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ mod claim;
77
mod info;
88
mod remove;
99

10-
pub use claim::*;
11-
pub use info::*;
12-
pub use remove::*;
13-
1410
/// Premium commands
1511
#[poise::command(
1612
prefix_command,

scripty_commands/src/cmds/transcribe_message.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub async fn transcribe_message(ctx: Context<'_>) -> Result<(), Error> {
4949

5050
if target
5151
.flags
52-
.map_or(false, |f| f.contains(MessageFlags::IS_VOICE_MESSAGE))
52+
.is_some_and(|f| f.contains(MessageFlags::IS_VOICE_MESSAGE))
5353
{
5454
scripty_bot_utils::voice_message::handle_message(ctx.serenity_context(), target).await;
5555
} else {

0 commit comments

Comments
 (0)