TV_Rename: slight refactor and formatting
This commit is contained in:
parent
efa1daf639
commit
3f6c97bda7
@ -131,15 +131,15 @@ std::vector< string > getEpisodeNames( const string &id, const string &season,
|
||||
episodes.resize( epdata.size() );
|
||||
for ( auto &x : epdata ) {
|
||||
if ( x["episodeName"].is_string() ) {
|
||||
if ( dvd ) {
|
||||
size_t index = x["dvdEpisodeNumber"].get< size_t >();
|
||||
if ( index > episodes.size() )
|
||||
episodes.resize( index );
|
||||
index--;
|
||||
episodes[index] =
|
||||
toString( x["episodeName"].get< std::string >() );
|
||||
} else {
|
||||
size_t index = x["airedEpisodeNumber"].get< size_t >();
|
||||
size_t index = -1;
|
||||
if ( dvd )
|
||||
index = x["dvdEpisodeNumber"].get< size_t >();
|
||||
else
|
||||
index = x["airedEpisodeNumber"].get< size_t >();
|
||||
|
||||
if ( index == static_cast<size_t>( -1 ) )
|
||||
continue;
|
||||
|
||||
if ( index > episodes.size() )
|
||||
episodes.resize( index );
|
||||
index--;
|
||||
@ -150,7 +150,6 @@ std::vector< string > getEpisodeNames( const string &id, const string &season,
|
||||
episodes[index].pop_back();
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
cerr << "Couldn't find episode names for season " << season
|
||||
<< " of show " << showNameFromId( id, language ) << std::endl;
|
||||
@ -280,8 +279,8 @@ bool authenticate( const std::string &api_key ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
void singleSeason( const string &path, const string &show, int season, string id,
|
||||
const string &language, const string &pattern,
|
||||
void singleSeason( const string &path, const string &show, int season,
|
||||
string id, const string &language, const string &pattern,
|
||||
const bool &linux, const bool &trust,
|
||||
std::map< int, string > *files_ptr, bool print, bool dvd ) {
|
||||
#ifndef GUI
|
||||
@ -344,8 +343,8 @@ end:
|
||||
}
|
||||
}
|
||||
|
||||
void singleSeason( const string &path, const string &show, int season, string id,
|
||||
const string &language, const string &pattern,
|
||||
void singleSeason( const string &path, const string &show, int season,
|
||||
string id, const string &language, const string &pattern,
|
||||
const size_t &flags, std::map< int, string > *files_ptr,
|
||||
bool print ) {
|
||||
singleSeason( path, show, season, id, language, pattern, flags & TV_LINUX,
|
||||
|
@ -25,14 +25,14 @@ using char_t = char;
|
||||
|
||||
#endif
|
||||
|
||||
void singleSeason( const string &path, const string &show, int season, string id,
|
||||
const string &language, const string &pattern,
|
||||
void singleSeason( const string &path, const string &show, int season,
|
||||
string id, const string &language, const string &pattern,
|
||||
const bool &linux, const bool &trust,
|
||||
std::map< int, string > *files_ptr = nullptr,
|
||||
bool print = true, bool dvd = false );
|
||||
|
||||
void singleSeason( const string &path, const string &show, int season, string id,
|
||||
const string &language, const string &pattern,
|
||||
void singleSeason( const string &path, const string &show, int season,
|
||||
string id, const string &language, const string &pattern,
|
||||
const size_t &flags,
|
||||
std::map< int, string > *files_ptr = nullptr,
|
||||
bool print = true );
|
||||
|
Loading…
Reference in New Issue
Block a user