|
|
@@ -205,9 +205,9 @@ class BaseService
|
|
|
if (count($texts) == 0) {
|
|
|
$texts[] = $item;
|
|
|
} else if (strlen($texts[count($texts) - 1] . $item) <= 4096) {
|
|
|
- $texts[count($texts) - 1] .= $item;
|
|
|
+ $texts[count($texts) - 1] .= $item."\n";
|
|
|
} else {
|
|
|
- $texts[] = $item;
|
|
|
+ $texts[] = $item."\n";
|
|
|
}
|
|
|
}
|
|
|
foreach ($texts as $index => $item) {
|