From e8c499fe23312ef312db16969406f0252bff2273 Mon Sep 17 00:00:00 2001 From: MasterAcnolo Date: Sun, 27 Sep 2026 20:02:56 +0200 Subject: [PATCH] fix: sendReport wrong IPC instance --- public/script/reportBug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/script/reportBug.js b/public/script/reportBug.js index e40079e..69b428a 100644 --- a/public/script/reportBug.js +++ b/public/script/reportBug.js @@ -76,7 +76,7 @@ class BugReportModal { window.electronAPI.logInfo("Submitting:", data); try { - const success = await window.electronAPI.sendReport(data); + const success = await window.topbarAPI.sendReport(data); if (success) { localStorage.removeItem("draft_bug_title");