fix for include transcript

This commit is contained in:
Mossy1022 2024-06-25 11:26:46 -04:00
parent b549735200
commit 1ccf82d682

View file

@ -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);
}