From 1ccf82d6829c1e12e228e86228faf423cba83fea Mon Sep 17 00:00:00 2001 From: Mossy1022 Date: Tue, 25 Jun 2024 11:26:46 -0400 Subject: [PATCH] fix for include transcript --- main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ts b/main.ts index 7bb09a7..ba60b9f 100644 --- a/main.ts +++ b/main.ts @@ -268,7 +268,7 @@ export default class SmartMemosPlugin extends Plugin { editor.setLine(LnToWrite, editor.getLine(LnToWrite) + '\n'); // Add the raw transcript at the end - if (this.transcript) { + if (this.settings.includeTranscript) { editor.setLine(LnToWrite++, '# Transcript'); editor.setLine(LnToWrite++, this.transcript); }