Merge branch 'main' of ssh://forgejo.djkato.net:222/HLadislav/moover_rust into spotify-player

This commit is contained in:
Ladislav Hano 2025-01-06 09:09:06 +01:00
commit 24c0ffdcf0
4 changed files with 5 additions and 4 deletions

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 {