Ken 1 tuần trước cách đây
mục cha
commit
a881ed5822
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      app/Services/BaseService.php

+ 2 - 2
app/Services/BaseService.php

@@ -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) {