more elegant crashfix

This commit is contained in:
Master Kwoth 2016-02-02 13:04:36 +01:00
parent 4770929e40
commit 39e53cbbf8

View File

@ -50,7 +50,7 @@ namespace NadekoBot.Commands {
var channel = NadekoBot.client.GetChannel(controls.ByeChannel);
if (channel == null) return;
var msg = controls.GreetText.Replace("%user%", e.User.Mention).Trim();
if (msg == null || msg == "")
if (string.IsNullOrEmpty(msg))
return;
await channel.Send(msg);
}
@ -64,7 +64,7 @@ namespace NadekoBot.Commands {
if (channel == null) return;
var msg = controls.GreetText.Replace("%user%", e.User.Mention).Trim();
if (msg == null || msg == "")
if (string.IsNullOrEmpty(msg))
return;
await channel.Send(msg);
}