fix: wrong notification image path

This commit is contained in:
Aylur
2023-08-04 13:08:56 +02:00
parent 85175295e4
commit cc9b8adb8a
+1 -1
View File
@@ -205,7 +205,7 @@ class NotificationsService extends Service {
return null;
ensureDirectory();
const fileName = name.replace(/[^a-zA-Z0-9]/g, '');
const fileName = NOTIFICATIONS_CACHE_PATH + '/' + name.replace(/[^a-zA-Z0-9]/g, '');
const image = image_data.recursiveUnpack();
const pixbuf = GdkPixbuf.Pixbuf.new_from_bytes(
image[6],