We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e69486 commit d4b9e30Copy full SHA for d4b9e30
1 file changed
Runtime/BlankGetChannel.cs
@@ -47,7 +47,7 @@ public static string GetChannelName(string channelKey = "channel")
47
{
48
foreach (var line in channelReadAllLines)
49
50
- var split = line.Split("=", StringSplitOptions.RemoveEmptyEntries);
+ var split = line.Split(new string[] { "=" }, StringSplitOptions.RemoveEmptyEntries);
51
if (split.Length > 1 && split[0] == channelKey)
52
53
channelName = split[1].Trim();
0 commit comments