Skip to content

Commit

Permalink
Fix inversion of export library dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
MilhouseVH committed Nov 5, 2015
1 parent c4a9e5d commit 3b11d53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/interfaces/builtins/LibraryBuiltins.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ static int ExportLibrary(const std::vector<std::string>& params)
if (cancelled)
return -1;

if (singleFile)
if (!singleFile)
{
if (params.size() > 2)
thumbs = StringUtils::EqualsNoCase(params[2], "true");
Expand Down Expand Up @@ -130,7 +130,7 @@ static int ExportLibrary(const std::vector<std::string>& params)
if (cancelled)
return -1;

if (singleFile)
if (!singleFile)
{
if (params.size() > 3)
overwrite = StringUtils::EqualsNoCase(params[3], "true");
Expand Down

0 comments on commit 3b11d53

Please sign in to comment.