diff --git a/NadekoBot/Modules/Searches/Commands/IMDB/ImdbScraper.cs b/NadekoBot/Modules/Searches/Commands/IMDB/ImdbScraper.cs index ff7cc814..5226d2a4 100644 --- a/NadekoBot/Modules/Searches/Commands/IMDB/ImdbScraper.cs +++ b/NadekoBot/Modules/Searches/Commands/IMDB/ImdbScraper.cs @@ -32,7 +32,7 @@ namespace NadekoBot.Modules.Searches.Commands.IMDB ImdbMovie mov = new ImdbMovie(); string imdbUrl = GetIMDbUrl(System.Uri.EscapeUriString(MovieName)); mov.Status = false; - if (!string.IsNullOrEmpty(imdbUrl)) + if (!string.IsNullOrWhiteSpace(imdbUrl)) { ParseIMDbPage(imdbUrl, GetExtraInfo, mov); }