mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
fix: some config settings have the wrong defaults
This commit is contained in:
parent
0c802ab0bd
commit
ecfc500cfa
1 changed files with 2 additions and 2 deletions
|
|
@ -474,7 +474,7 @@ public class Config
|
|||
return;
|
||||
}
|
||||
|
||||
var newVal = ctx.MatchToggle(true);
|
||||
var newVal = ctx.MatchToggle(false);
|
||||
await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { HidDisplaySplit = newVal });
|
||||
await ctx.Reply($"Splitting of 6-character IDs with a hyphen is now {EnabledDisabled(newVal)}.");
|
||||
}
|
||||
|
|
@ -488,7 +488,7 @@ public class Config
|
|||
return;
|
||||
}
|
||||
|
||||
var newVal = ctx.MatchToggle(true);
|
||||
var newVal = ctx.MatchToggle(false);
|
||||
await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { HidDisplayCaps = newVal });
|
||||
await ctx.Reply($"Displaying IDs as capital letters is now {EnabledDisabled(newVal)}.");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue