1
0

fix
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s

This commit is contained in:
syui 2024-04-13 05:16:40 +09:00
parent 9aa5fd4ad4
commit 83994045ac
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56

View File

@ -551,9 +551,13 @@ pub fn c_bot_feed(c: &Context) {
let s = 0;
let mut e = link.chars().count();
let mut com = "".to_string();
let mut prompt = "".to_string();
let mut prompt_sub = "".to_string();
let com = vec[1].trim().to_string();
let prompt = vec[2..].join(" ");
if vec.len() > 1 {
com = vec[1].trim().to_string();
prompt = vec[2..].join(" ");
}
if vec.len() > 2 {
prompt_sub = vec[3..].join(" ");
}