diff --git a/NadekoBot/Modules/Searches/Commands/IMDB/ImdbScraper.cs b/NadekoBot/Modules/Searches/Commands/IMDB/ImdbScraper.cs index 1735eda6..ff7cc814 100644 --- a/NadekoBot/Modules/Searches/Commands/IMDB/ImdbScraper.cs +++ b/NadekoBot/Modules/Searches/Commands/IMDB/ImdbScraper.cs @@ -45,11 +45,7 @@ namespace NadekoBot.Modules.Searches.Commands.IMDB ImdbMovie mov = new ImdbMovie(); string imdbUrl = "http://www.imdb.com/title/" + imdbId + "/"; mov.Status = false; - if (!string.IsNullOrEmpty(imdbUrl)) - { - ParseIMDbPage(imdbUrl, GetExtraInfo, mov); - } - + ParseIMDbPage(imdbUrl, GetExtraInfo, mov); return mov; }