Ken 1 settimana fa
parent
commit
a881ed5822
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      app/Services/BaseService.php

+ 2 - 2
app/Services/BaseService.php

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