Skip to content

Commit d65e75a

Browse files
committed
minor update
1 parent 31657fb commit d65e75a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/github.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
. "in [{$RepositoryName}](https://github.com/{$RepositoryName}).";
6868

6969
if (!empty($Issue['body'])) {
70-
$ChatMsg .= "\n\n> " . substr($Issue['body'], 0, 200) . (strlen($Issue['body']) > 200 ? "" : "");
70+
$ChatMsg .= "\n\n> " . substr($Issue['body'], 0, 500) . (strlen($Issue['body']) > 500 ? "" : "");
7171
}
7272

7373
$Msg['text'] = $ChatMsg;
@@ -85,7 +85,7 @@
8585
. "in [{$RepositoryName}](https://github.com/{$RepositoryName}).";
8686

8787
if (!empty($PR['body'])) {
88-
$ChatMsg .= "\n\n> " . substr($PR['body'], 0, 200) . (strlen($PR['body']) > 200 ? "" : "");
88+
$ChatMsg .= "\n\n> " . substr($PR['body'], 0, 500) . (strlen($PR['body']) > 500 ? "" : "");
8989
}
9090

9191
$Msg['text'] = $ChatMsg;

0 commit comments

Comments
 (0)