Skip to content

Commit

Permalink
質問可能な文字数を少し増やした
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryoga Saito committed Dec 6, 2023
1 parent 21f7674 commit c99eef8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/bot/commands/ask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::bot::Bot;

#[derive(Debug, thiserror::Error)]
enum AskCommandError {
#[error("質問のタイトルは32文字以内でなければなりません。「問題〇〇の初期条件について」など、簡潔にまとめて再度お試しください。")]
#[error("質問のタイトルは50文字以内でなければなりません。「問題〇〇の初期条件について」など、簡潔にまとめて再度お試しください。")]
TitleTooLongError,

#[error("このコマンドはテキストチャンネル以外から呼び出すことはできません。")]
Expand All @@ -32,7 +32,7 @@ impl Bot {
.create_option(|option| {
option
.name("title")
.description("質問タイトル(32文字以内)")
.description("質問タイトル(50文字以内)")
.kind(CommandOptionType::String)
.required(true)
})
Expand Down Expand Up @@ -90,8 +90,8 @@ impl Bot {
.get_option_as_str(&interaction.data.options, "title")
.unwrap();

// 可読性や識別性から、質問タイトルは32文字以内に制限している
if title.chars().count() > 32 {
// 可読性や識別性から、質問タイトルは50文字以内に制限している
if title.chars().count() > 50 {
return Err(AskCommandError::TitleTooLongError);
}

Expand Down

0 comments on commit c99eef8

Please sign in to comment.