diff --git a/src/renderer/main/ErrorConsole.svelte b/src/renderer/main/ErrorConsole.svelte index 5aeb623ee..7c3bde2c0 100644 --- a/src/renderer/main/ErrorConsole.svelte +++ b/src/renderer/main/ErrorConsole.svelte @@ -133,13 +133,19 @@ if (element.type === "error") { solutions.push(element); } else if (element.type === "notification") { - if (typeof element.delay !== "undefined") { - let delay = parseInt(element.delay); - setTimeout(() => { + if ( + typeof element.version == "undefined" || + element.version === + window.ctxProcess.configuration()?.EDITOR_VERSION + ) { + if (typeof element.delay !== "undefined") { + let delay = parseInt(element.delay); + setTimeout(() => { + notifications = [...notifications, element]; + }, delay); + } else { notifications = [...notifications, element]; - }, delay); - } else { - notifications = [...notifications, element]; + } } } });