Skip to content

Commit d4b9e30

Browse files
committed
[修复] 语法库兼容问题
1 parent 4e69486 commit d4b9e30

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Runtime/BlankGetChannel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static string GetChannelName(string channelKey = "channel")
4747
{
4848
foreach (var line in channelReadAllLines)
4949
{
50-
var split = line.Split("=", StringSplitOptions.RemoveEmptyEntries);
50+
var split = line.Split(new string[] { "=" }, StringSplitOptions.RemoveEmptyEntries);
5151
if (split.Length > 1 && split[0] == channelKey)
5252
{
5353
channelName = split[1].Trim();

0 commit comments

Comments
 (0)