fixed fishconfig reverting captcha every time
This commit is contained in:
parent
4c2b42ab7f
commit
ea1c8c56e3
1 changed files with 7 additions and 4 deletions
|
@ -19,6 +19,8 @@ public sealed class FishConfigService : ConfigServiceBase<FishConfig>
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Migrate()
|
private void Migrate()
|
||||||
|
{
|
||||||
|
if (data.Version < 2)
|
||||||
{
|
{
|
||||||
ModifyConfig(c =>
|
ModifyConfig(c =>
|
||||||
{
|
{
|
||||||
|
@ -26,4 +28,5 @@ public sealed class FishConfigService : ConfigServiceBase<FishConfig>
|
||||||
c.RequireCaptcha = true;
|
c.RequireCaptcha = true;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue