From 32c5fcd41a39d0538d7fec01eabb3672640ccfd7 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Fri, 7 Feb 2020 19:00:31 +0100 Subject: [PATCH] added special case for album header --- lib/utils/android_file_utils.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/utils/android_file_utils.dart b/lib/utils/android_file_utils.dart index 582a8e4d4..1132b0b19 100644 --- a/lib/utils/android_file_utils.dart +++ b/lib/utils/android_file_utils.dart @@ -16,7 +16,8 @@ class AndroidFileUtils { dcimPath = join(externalStorage, 'DCIM'); downloadPath = join(externalStorage, 'Download'); picturesPath = join(externalStorage, 'Pictures'); - appNameMap = await AndroidAppService.getAppNames(); + appNameMap = await AndroidAppService.getAppNames() + ..addAll({'KakaoTalkDownload': 'com.kakao.talk'}); } bool isCameraPath(String path) => path != null && path.startsWith(dcimPath) && (path.endsWith('Camera') || path.endsWith('100ANDRO'));