Just null check the styles

This commit is contained in:
Infi
2024-04-12 22:11:17 +02:00
parent 4751e3c8f7
commit c66d97829c
12 changed files with 60 additions and 60 deletions
+2 -2
View File
@@ -51,8 +51,8 @@ internal class Configuration : IPluginConfiguration {
public Dictionary<ChatType, uint> ChatColours = new();
public List<Tab> Tabs = new();
public bool OverrideStyle = false;
public string ChosenStyle = "";
public bool OverrideStyle;
public string? ChosenStyle;
public uint DatabaseMigration = LatestDbVersion;