Sfoglia il codice sorgente

Merge branch 'diadistis-master'

Tatsuhiro Tsujikawa 11 anni fa
parent
commit
da2cc9d3a9
1 ha cambiato i file con 4 aggiunte e 3 eliminazioni
  1. 4 3
      src/HttpResponseCommand.cc

+ 4 - 3
src/HttpResponseCommand.cc

@@ -115,10 +115,11 @@ std::unique_ptr<StreamFilter> getContentEncodingStreamFilter
                       "process is skipped and the downloaded content will be "
                       "still encoded.",
                       httpResponse->getContentEncoding().c_str()));
+    } else {
+      filter->init();
+      filter->installDelegate(std::move(delegate));
+      return filter;
     }
-    filter->init();
-    filter->installDelegate(std::move(delegate));
-    return filter;
   }
   return delegate;
 }