|
|
@@ -201,13 +201,7 @@ class BaseService
|
|
|
$bettingGroup = Config::where('field', 'betting_group')->first()->val;
|
|
|
// $separator = "\n";
|
|
|
$array = explode($separator, $text);
|
|
|
- foreach ($array as &$line) {
|
|
|
- if ($line == "\n" || $line == "") {
|
|
|
- unset($line);
|
|
|
- } else {
|
|
|
- $line .= $separator;
|
|
|
- }
|
|
|
- }
|
|
|
+ foreach ($array as &$line) $line .= $separator;
|
|
|
$texts = [];
|
|
|
$len = 4096;
|
|
|
if (!empty($image)) $len = 1024;
|