Skip to content

Commit

Permalink
preserve quites when splitting options in playlist downloader tab
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogomchungu committed Feb 14, 2024
1 parent e969cb3 commit 3f2b333
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/playlistdownloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -982,12 +982,12 @@ void playlistdownloader::getList( playlistdownloader::listIterator iter,

m_settings.setPlaylistRangeHistoryLastUsed( listOptions ) ;

opts.append( util::split( listOptions,' ',true ) ) ;
opts.append( util::splitPreserveQuotes( listOptions ) ) ;
}

if( !configListOpts.isEmpty() ){

opts.append( util::split( configListOpts,' ',true ) ) ;
opts.append( util::splitPreserveQuotes( configListOpts ) ) ;
}

engine.setTextEncondig( opts ) ;
Expand Down

0 comments on commit 3f2b333

Please sign in to comment.