feat: reintroduce .excalidraw.png default when embedding scene (#8979)
Some checks are pending
Tests / test (push) Waiting to run
Auto release excalidraw next / Auto-release-excalidraw-next (push) Waiting to run
Build Docker image / build-docker (push) Waiting to run
Cancel previous runs / cancel (push) Waiting to run
Publish Docker / publish-docker (push) Waiting to run
New Sentry production release / sentry (push) Waiting to run

This commit is contained in:
David Luzar
2025-01-05 22:21:39 +01:00
committed by GitHub
parent 12c39d1034
commit f2f8219917

View File

@@ -170,9 +170,7 @@ export const exportCanvas = async (
return fileSave(blob, {
description: "Export to PNG",
name,
// FIXME reintroduce `excalidraw.png` when most people upgrade away
// from 111.0.5563.64 (arm64), see #6349
extension: /* appState.exportEmbedScene ? "excalidraw.png" : */ "png",
extension: appState.exportEmbedScene ? "excalidraw.png" : "png",
mimeTypes: [IMAGE_MIME_TYPES.png],
fileHandle,
});