mirror of
https://github.com/mossy1022/Smart-Memos.git
synced 2026-07-22 05:16:24 +00:00
fix for include transcript
This commit is contained in:
parent
b549735200
commit
1ccf82d682
1 changed files with 1 additions and 1 deletions
2
main.ts
2
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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue