Change grammar threshold from 25 to 30 (#3689)

pull/2245/head
Kelrap 3 months ago committed by GitHub
parent 14f2401df7
commit 10d8fc26aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -154,7 +154,7 @@ class GetAnalyticsController extends BaseController {
final prevUnlockedMorphs = constructListModel final prevUnlockedMorphs = constructListModel
.unlockedLemmas( .unlockedLemmas(
ConstructTypeEnum.morph, ConstructTypeEnum.morph,
threshold: 25, threshold: 30,
) )
.toSet(); .toSet();
@ -166,7 +166,7 @@ class GetAnalyticsController extends BaseController {
final newUnlockedMorphs = constructListModel final newUnlockedMorphs = constructListModel
.unlockedLemmas( .unlockedLemmas(
ConstructTypeEnum.morph, ConstructTypeEnum.morph,
threshold: 25, threshold: 30,
) )
.toSet() .toSet()
.difference(prevUnlockedMorphs); .difference(prevUnlockedMorphs);

Loading…
Cancel
Save