We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31657fb commit d65e75aCopy full SHA for d65e75a
1 file changed
web/github.php
@@ -67,7 +67,7 @@
67
. "in [{$RepositoryName}](https://github.com/{$RepositoryName}).";
68
69
if (!empty($Issue['body'])) {
70
- $ChatMsg .= "\n\n> " . substr($Issue['body'], 0, 200) . (strlen($Issue['body']) > 200 ? "…" : "");
+ $ChatMsg .= "\n\n> " . substr($Issue['body'], 0, 500) . (strlen($Issue['body']) > 500 ? "…" : "");
71
}
72
73
$Msg['text'] = $ChatMsg;
@@ -85,7 +85,7 @@
85
86
87
if (!empty($PR['body'])) {
88
- $ChatMsg .= "\n\n> " . substr($PR['body'], 0, 200) . (strlen($PR['body']) > 200 ? "…" : "");
+ $ChatMsg .= "\n\n> " . substr($PR['body'], 0, 500) . (strlen($PR['body']) > 500 ? "…" : "");
89
90
91
0 commit comments