mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 19:19:10 +00:00
Fix .apk extension handling
This commit is contained in:
@@ -64,7 +64,7 @@ public partial class ApkInfoPanel : UserControl, IAppInfoPanel
|
||||
if (File.Exists(path))
|
||||
{
|
||||
var size = new FileInfo(path).Length;
|
||||
IApkInfo info = Path.GetExtension(path).ToLower() switch
|
||||
IApkInfo info = Path.GetExtension(Plugin.ConfirmPath(path)).ToLower() switch
|
||||
{
|
||||
".apk" => ApkParser.Parse(path),
|
||||
".aab" => AabParser.Parse(path),
|
||||
|
Reference in New Issue
Block a user