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