diff --git a/apps/multiplatform/common/src/desktopMain/kotlin/chat/simplex/common/platform/Files.desktop.kt b/apps/multiplatform/common/src/desktopMain/kotlin/chat/simplex/common/platform/Files.desktop.kt index 6dc1692245..ba2db0267a 100644 --- a/apps/multiplatform/common/src/desktopMain/kotlin/chat/simplex/common/platform/Files.desktop.kt +++ b/apps/multiplatform/common/src/desktopMain/kotlin/chat/simplex/common/platform/Files.desktop.kt @@ -84,7 +84,7 @@ actual class FileChooserLauncher actual constructor() { } if (res == null) { onResult(null) - } else if (!res.exists()) { + } else if (desktopPlatform.isMac() || !res.exists()) { // mac has an alert confirmation if the file exists onResult(res.toURI()) } else { showSaveRenameFileAlert(res, onResult)