Andadurias / Instant-Notes

Micro journaling app to reduce the effort of taking notes, managing memories and connecting ideas
The Unlicense
2 stars 1 forks source link

🐛 Error filtering multiple tags at adding card view #34

Closed BlancaCC closed 1 year ago

BlancaCC commented 1 year ago

There is an error in multiple tags preprocessing. If I write Aa; ; 11; a The expected behavior is:

the following insertion is done:

INSERT OR REPLACE INTO Tags
        (tag, cardID)
        values
        ('aa', 13) 
,('', 13) 
,('11', 13) 
,('a', 13) 
;

so there is a problem with tags preprocessing and filtration