Implemented radio player and partially some other players #6

Merged
HLadislav merged 21 commits from player into main 2025-01-26 21:57:27 +00:00
4 changed files with 5 additions and 4 deletions
Showing only changes of commit daf21fad90 - Show all commits

View file

@ -1,6 +1,7 @@
pub use moover::*; pub use moover::*;
pub use notice::*; pub use notice::*;
pub use user_interactions::*; pub use user_interactions::*;
pub use other::*;
pub use voice::*; pub use voice::*;
pub mod moover; pub mod moover;

View file

@ -1,7 +1,7 @@
pub use moove::*; pub use moove::*;
pub use say::*; pub use say::*;
pub use gif::*; // pub use gif::*;
pub mod moove; pub mod moove;
pub mod say; pub mod say;
pub mod gif; // pub mod gif;

View file

@ -33,7 +33,7 @@ pub async fn handle(ctx: Context, msg: Message) {
// X and IG not embedding correctly (IG fix does not work for now need to find different one) // X and IG not embedding correctly (IG fix does not work for now need to find different one)
let link_fixes = HashMap::from([ let link_fixes = HashMap::from([
("//x.com", "//fxtwitter.com") ("//x.com", "//fixvx.com")
]); ]);
for (site, fix) in link_fixes { for (site, fix) in link_fixes {