protected override void VerifyEntryOnIndexer(UploadEntry upload)
        {
            if (UploadIsOnIndexer(upload))
            {
                upload.SeenOnIndexAt = DateTime.UtcNow;
                DBHandler.Instance.UpdateUploadEntry(upload);
                log.InfoFormat("Release [{0}] has been found on the indexer.", upload.CleanedName);

                if (upload.RemoveAfterVerify)
                {
                    upload.Delete(Configuration);
                }
            }
        }
        protected virtual void VerifyEntryOnIndexer(UploadEntry upload)
        {
            if (UploadIsOnIndexer(upload))
            {
                upload.SeenOnIndexAt = DateTime.UtcNow;
                DBHandler.Instance.UpdateUploadEntry(upload);
                log.InfoFormat("Release [{0}] has been found on the indexer.", upload.CleanedName);

                if (upload.RemoveAfterVerify)
                {
                    upload.Delete(Configuration);
                }
            }
            else
            {
                log.WarnFormat(
                    "Release [{0}] has NOT been found on the indexer. Checking if a repost is required.",
                    upload.CleanedName);
                RepostIfRequired(upload);
            }
        }