From d0a915e81c363cc67527d405a2cc5a5cae16a65e Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sat, 5 Oct 2024 00:32:45 +0200 Subject: [PATCH] Add missing QML import name --- src/qml/FileDelegateContextMenu.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/FileDelegateContextMenu.qml b/src/qml/FileDelegateContextMenu.qml index 19be223e2..7cf858dad 100644 --- a/src/qml/FileDelegateContextMenu.qml +++ b/src/qml/FileDelegateContextMenu.qml @@ -105,7 +105,7 @@ DelegateContextMenu { } room: currentRoom eventId: root.eventId - property string filename: StandardPaths.writableLocation(StandardPaths.CacheLocation) + "/" + eventId.replace(":", "_").replace("/", "_").replace("+", "_") + currentRoom.fileNameToDownload(eventId) + property string filename: Core.StandardPaths.writableLocation(Core.StandardPaths.CacheLocation) + "/" + eventId.replace(":", "_").replace("/", "_").replace("+", "_") + currentRoom.fileNameToDownload(eventId) } ]