Skip to content

Commit

Permalink
change some limitations
Browse files Browse the repository at this point in the history
  • Loading branch information
rikumi authored Oct 24, 2024
1 parent 58b1b60 commit 8cfa803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/jieba.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const handleSlashCommand = async (message: GenericMessage) => {
}
sentence = repliedMessage.text;
}
if (sentence.length > 64) {
if (sentence.length > 128) {
return '句子太长了!';
}
try {
Expand Down

0 comments on commit 8cfa803

Please sign in to comment.