Use vxreddit for embedded video playback

This commit is contained in:
August 2024-09-30 17:11:28 -04:00
parent 9f573f53ac
commit ebf8bf1cb2
Signed by: shibedrill
GPG Key ID: 5FE0CB25945EFAA2
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -1514,7 +1514,7 @@ dependencies = [
[[package]]
name = "shibe-bot"
version = "0.2.6"
version = "0.3.0"
dependencies = [
"build-time",
"dotenvy",

View File

@ -1,6 +1,6 @@
[package]
name = "shibe-bot"
version = "0.2.6"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,4 +1,4 @@
# Shibe Bot 0.2.6
# Shibe Bot 0.3.0
[![Rust](https://github.com/shibedrill/shibe-bot/actions/workflows/rust.yml/badge.svg)](https://github.com/shibedrill/shibe-bot/actions/workflows/rust.yml)
[![GitHub License](https://img.shields.io/github/license/shibedrill/shibe-bot)](LICENSE.txt)

View File

@ -154,7 +154,7 @@ pub async fn deer(ctx: Context<'_>) -> Result<(), Error> {
error!("Executing command `deer` failed: {}", e)
})?
};
ctx.say(format!("https://reddit.com{}", &chosen_post.data.permalink))
ctx.say(format!("https://vxreddit.com{}", &chosen_post.data.permalink))
.await?;
info!("Executed command `deer` successfully");
Ok(())