From 0de23512e7a21e7316e8b891f90062bb4f2ad38d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 1 Mar 2018 14:59:37 +0100 Subject: [PATCH] Should fix APK extraction (hopefully) --- tasks/task_decompress.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tasks/task_decompress.c b/tasks/task_decompress.c index 470f711d80..2ee85efa38 100644 --- a/tasks/task_decompress.c +++ b/tasks/task_decompress.c @@ -294,9 +294,10 @@ bool task_push_decompress( if ( !filestream_exists(source_file) || ( - (!string_is_equal_noncase(ext, "zip")) + !string_is_equal_noncase(ext, "zip") + && !string_is_equal_noncase(ext, "apk") #ifdef HAVE_7ZIP - && (!string_is_equal_noncase(ext, "7z")) + && !string_is_equal_noncase(ext, "7z") #endif ) )