mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 23:48:01 +00:00
oops
This commit is contained in:
parent
60718dce48
commit
73c8874749
|
@ -29,7 +29,7 @@ export default class KeywordModule implements IModule {
|
|||
|
||||
await Promise.all(interestedNotes.map(note => new Promise((res, rej) => {
|
||||
this.tokenizer.parse(note.text, (err, tokens) => {
|
||||
const keywordsInThisNote = tokens.filter(token => token[2] == '固有名詞' && keyword[8] != null);
|
||||
const keywordsInThisNote = tokens.filter(token => token[2] == '固有名詞' && token[8] != null);
|
||||
keywords = keywords.concat(keywordsInThisNote);
|
||||
res();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue