Skip to content

Commit 142644b

Browse files
Kuuuubejamesmaa
authored andcommitted
Fix frequencies missing value to push to array (#1476)
1 parent 73793a4 commit 142644b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/js/data/anki-note-data-creator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ function getFrequencyNumbers(dictionaryEntry) {
189189
if (frequencyMatch !== null) {
190190
const frequencyParsed = Number.parseInt(frequencyMatch[0], 10);
191191
if (frequencyParsed > 0) {
192-
frequencies.push();
192+
frequencies.push(frequencyParsed);
193193
continue;
194194
}
195195
}

0 commit comments

Comments
 (0)