File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
44
55Generated by [ ` auto-changelog ` ] ( https://github.com/CookPete/auto-changelog ) .
66
7+ ## [ 1.12.5.17]
8+
9+ - fix [ #110 ] [ Bug ] : 删除review标签,在侧边栏笔记队列还会显示这个笔记
10+
711## [ 1.12.5.16]
812
913- fix #107 [ Bug] : Hotkeys doesn't work in non-tab mode
1014
11-
1215## [ 1.12.5.15]
1316
1417- fix #97 , postpone cards in note;
Original file line number Diff line number Diff line change 11{
22 "id" : " obsidian-spaced-repetition-recall" ,
33 "name" : " Spaced Repetition Recall" ,
4- "version" : " 1.12.5.16 " ,
4+ "version" : " 1.12.5.17 " ,
55 "minAppVersion" : " 1.2.8" ,
66 "description" : " Fight the forgetting curve by reviewing flashcards & entire notes." ,
77 "author" : " Newdea" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " obsidian-spaced-repetition" ,
3- "version" : " 1.12.5.16 " ,
3+ "version" : " 1.12.5.17 " ,
44 "description" : " Fight the forgetting curve by reviewing flashcards & entire notes." ,
55 "main" : " main.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -496,12 +496,12 @@ export class DataStore {
496496 const note = Iadapter . instance . vault . getAbstractFileByPath ( path ) as TFile ;
497497 let cardName : string = null ;
498498
499- if ( note != null && trackedFile . tags . length > 0 ) {
499+ if ( note != null && trackedFile ) {
500500 const fileCachedData = Iadapter . instance . metadataCache . getFileCache ( note ) || { } ;
501501 const tags = getAllTags ( fileCachedData ) || [ ] ;
502502 const deckname = Tags . getNoteDeckName ( note , this . settings ) ;
503503 cardName = Tags . getTagFromSettingTags ( tags , this . settings . flashcardTags ) ;
504- if ( deckname !== null || this . settings . convertFoldersToDecks ) {
504+ if ( deckname !== null ) {
505505 // || cardName !== null
506506 // it's taged file, can't untrack by this.
507507 console . log ( path + " is taged file, can't untrack by this." ) ;
You can’t perform that action at this time.
0 commit comments