Skip to content

Commit

Permalink
this commit marks the release point of version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogomchungu committed May 1, 2021
1 parent 3ddfef7 commit 4645946
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/basicdownloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,11 @@ void basicdownloader::listRequested( const QList< QByteArray >& args )

QStringList m ;

for( auto it = args.rbegin() ; it != args.rend() ; it++ ){
for( int i = args.size() - 1 ; i >= 0 ; i-- ){

auto a = utility::split( *it,' ',true ) ;
const auto& s = args[ i ] ;

auto a = utility::split( s,' ',true ) ;

if( a.size() > 1 ){

Expand All @@ -359,7 +361,7 @@ void basicdownloader::listRequested( const QList< QByteArray >& args )
break ;
}else{
opts.insert( 0,e ) ;
m.insert( 0,*it ) ;
m.insert( 0,s ) ;
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/engines.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

#include <vector>
#include <functional>
#include <memory>

#include "logger.h"

Expand Down

0 comments on commit 4645946

Please sign in to comment.