Change grammar threshold from 25 to 30 (#3689)
This commit is contained in:
parent
14f2401df7
commit
10d8fc26aa
1 changed files with 2 additions and 2 deletions
|
|
@ -154,7 +154,7 @@ class GetAnalyticsController extends BaseController {
|
|||
final prevUnlockedMorphs = constructListModel
|
||||
.unlockedLemmas(
|
||||
ConstructTypeEnum.morph,
|
||||
threshold: 25,
|
||||
threshold: 30,
|
||||
)
|
||||
.toSet();
|
||||
|
||||
|
|
@ -166,7 +166,7 @@ class GetAnalyticsController extends BaseController {
|
|||
final newUnlockedMorphs = constructListModel
|
||||
.unlockedLemmas(
|
||||
ConstructTypeEnum.morph,
|
||||
threshold: 25,
|
||||
threshold: 30,
|
||||
)
|
||||
.toSet()
|
||||
.difference(prevUnlockedMorphs);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue