.send is now correctly splitting on "|", not "-" (fixed .send)

This commit is contained in:
Kwoth 2016-07-22 13:41:41 +02:00
parent 9a6695cc90
commit 8a9f6f4e26

View File

@ -738,7 +738,7 @@ namespace NadekoBot.Modules.Administration
if (string.IsNullOrWhiteSpace(msg)) if (string.IsNullOrWhiteSpace(msg))
return; return;
var ids = e.GetArg("ids").Split('-'); var ids = e.GetArg("ids").Split('|');
if (ids.Length != 2) if (ids.Length != 2)
return; return;
var sid = ulong.Parse(ids[0]); var sid = ulong.Parse(ids[0]);