Skip to content

Commit

Permalink
MetadataDownload: Fix clang-tidy warning - else after continue
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-kendall committed Oct 7, 2020
1 parent 63061dc commit d78f56e
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions mythtv/libs/libmythmetadata/metadatadownload.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,11 @@ void MetadataDownload::run()
prependLookup(newlookup);
continue;
}
else
{
// nothing more we can do in automatic mode
QCoreApplication::postEvent(m_parent,
new MetadataLookupFailure(MetadataLookupList() << lookup));
continue;
}

// nothing more we can do in automatic mode
QCoreApplication::postEvent(m_parent,
new MetadataLookupFailure(MetadataLookupList() << lookup));
continue;
}

LOG(VB_GENERAL, LOG_INFO,
Expand Down

0 comments on commit d78f56e

Please sign in to comment.