mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-14 09:06:14 +01:00
Fix bot giving error in any question
This commit is contained in:
parent
df7ac5b33d
commit
85f938173d
1 changed files with 1 additions and 1 deletions
|
@ -420,7 +420,7 @@ namespace SoUnBot.Modules.OttoLinux
|
||||||
};
|
};
|
||||||
|
|
||||||
string quest = qst.Quest;
|
string quest = qst.Quest;
|
||||||
if (qst.Image != "")
|
if (!string.IsNullOrEmpty(qst.Image))
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue