Skip to content

Commit 738bac3

Browse files
committed
codeblock分文字数減らす
1 parent 86e563d commit 738bac3

File tree

1 file changed

+1
-1
lines changed
  • packages/uplim-info-gmail/src

1 file changed

+1
-1
lines changed

packages/uplim-info-gmail/src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function main() {
1616
const text = createMessage(message);
1717

1818
const cutText =
19-
text.length > 2000 ? `${text.substring(0, 1995)}...` : text;
19+
text.length > 1950 ? `${text.substring(0, 1950)}...` : text;
2020

2121
// biome-ignore lint/style/useTemplate: エスケープめっちゃ必要でむしろ読みにくくなるので
2222
const codeBlock = "```\n" + cutText + "\n```";

0 commit comments

Comments
 (0)