Ejemplo n.º 1
0
        protected void AddLoliSafeUrl(string post, string timestamp)
        {
            foreach (string imageUrl in lolisafeParser.SearchForLoliSafeUrl(post, blog.LoliSafeType))
            {
                if (CheckIfSkipGif(imageUrl))
                {
                    continue;
                }

                AddToDownloadList(new ExternalVideoPost(imageUrl, lolisafeParser.GetLoliSafeId(imageUrl),
                                                        timestamp));
            }
        }