Make clippy happy
Some checks failed
build-plugin / build (dev) (push) Has been cancelled
build-plugin / build (release) (push) Has been cancelled

This commit is contained in:
Ryze 2024-07-15 02:43:20 +03:00
parent caa7d4c5a7
commit 87f401f5cf
Signed by: ryze
GPG key ID: 9B296C5CEAEAAAC1
5 changed files with 12 additions and 10 deletions

View file

@ -265,7 +265,7 @@ impl MpvEventHandler for DiscordClient {
MpvEvent::FileLoaded(file_info) => self.set_presence(file_info),
MpvEvent::Seek(remaining_time) => self.set_timestamps(remaining_time),
MpvEvent::Play(remaining_time) => self.set_timestamps(remaining_time),
MpvEvent::Pause(_) => self.clear_timestamps(),
MpvEvent::Pause => self.clear_timestamps(),
MpvEvent::Buffering => self.clear_timestamps(),
MpvEvent::Toggle => self.toggle_activity(),
MpvEvent::Exit => self.close(),

View file

@ -47,7 +47,7 @@ fn get_cover_art_from_query(query: String) -> Option<String> {
Err(_) => return None
};
let release = match result.entities.get(0) {
let release = match result.entities.first() {
Some(group) => group,
None => return None
};

View file

@ -1,6 +1,8 @@
use std::env;
pub mod macros;
#[allow(unused_imports)]
pub use macros::{error, warning, info};
#[allow(dead_code)]

View file

@ -111,7 +111,7 @@ impl MpvEventQueue {
let time = self.get_remaining_time();
match pause {
false => Some(MpvEvent::Play(time)),
true => Some(MpvEvent::Pause(time))
true => Some(MpvEvent::Pause)
}
}

View file

@ -17,7 +17,7 @@ pub enum MpvEvent {
Exit,
FileLoaded(FileInfo),
Play(i64),
Pause(i64),
Pause,
Seek(i64)
}