summaryrefslogtreecommitdiff
path: root/apps/hosted/android/notification.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/hosted/android/notification.c')
-rw-r--r--apps/hosted/android/notification.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/hosted/android/notification.c b/apps/hosted/android/notification.c
index 443200698c..2c814b06a6 100644
--- a/apps/hosted/android/notification.c
+++ b/apps/hosted/android/notification.c
@@ -68,7 +68,7 @@ static void track_changed_callback(void *param)
68 album = e->NewStringUTF(env_ptr, id3->album ?: ""); 68 album = e->NewStringUTF(env_ptr, id3->album ?: "");
69 69
70 albumart = NULL; 70 albumart = NULL;
71 if (id3->embed_albumart && id3->albumart.type == AA_TYPE_JPG) 71 if (id3->has_embedded_albumart && id3->albumart.type == AA_TYPE_JPG)
72 { /* extract albumart to a temporary file using mmap() */ 72 { /* extract albumart to a temporary file using mmap() */
73 snprintf(buf, sizeof(buf), "/sdcard/rockbox/.temp_albumart_%d.jpg", 73 snprintf(buf, sizeof(buf), "/sdcard/rockbox/.temp_albumart_%d.jpg",
74 thread_self()); 74 thread_self());