Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

Commit

Permalink
#371: do not direct unpack if article decoding is disabled
Browse files Browse the repository at this point in the history
via option Decode=no.
  • Loading branch information
hugbug committed May 30, 2017
1 parent c5263f8 commit 8187030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/postprocess/PrePostProcessor.cpp
Expand Up @@ -924,7 +924,7 @@ void PrePostProcessor::FileDownloaded(DownloadQueue* downloadQueue, NzbInfo* nzb
g_QueueScriptCoordinator->EnqueueScript(nzbInfo, QueueScriptCoordinator::qeFileDownloaded);
}

if (g_Options->GetDirectUnpack())
if (g_Options->GetDirectUnpack() && g_Options->GetDecode())
{
if (nzbInfo->GetDirectUnpackStatus() == NzbInfo::nsNone)
{
Expand Down

0 comments on commit 8187030

Please sign in to comment.