mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-14 20:29:07 +00:00
Fix apk icon can not be found from resource id
This commit is contained in:
@@ -53,7 +53,9 @@ public static class ApkParser
|
||||
|
||||
if (baseInfo.HasIcon)
|
||||
{
|
||||
ZipEntry entry = zip.GetEntry(baseInfo.Icons.Values.LastOrDefault());
|
||||
ZipEntry entry = zip.GetEntry(baseInfo.Icons.Values
|
||||
.Where(icon => icon.EndsWith(".png", StringComparison.OrdinalIgnoreCase))
|
||||
.LastOrDefault());
|
||||
using var s = new BinaryReader(zip.GetInputStream(entry));
|
||||
info.Logo = s.ReadBytes((int)entry.Size);
|
||||
}
|
||||
|
Reference in New Issue
Block a user