fix: 修复 ServiceBuilder 上的输出数据带有换行的 BUG
parent
f33fc2c764
commit
d8967001bf
|
|
@ -479,7 +479,7 @@ namespace Guru.Editor
|
||||||
arr = GetStringArray(line, 0, 7);
|
arr = GetStringArray(line, 0, 7);
|
||||||
if(string.IsNullOrEmpty(arr[5])) arr[5] = "Store";
|
if(string.IsNullOrEmpty(arr[5])) arr[5] = "Store";
|
||||||
if(string.IsNullOrEmpty(arr[6])) arr[6] = "0";
|
if(string.IsNullOrEmpty(arr[6])) arr[6] = "0";
|
||||||
iaps.Add(string.Join("," , arr));
|
iaps.Add(string.Join(",", arr).Replace("\r", ""));
|
||||||
index++;
|
index++;
|
||||||
}
|
}
|
||||||
settings.products = iaps.ToArray();
|
settings.products = iaps.ToArray();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue