Skip to content

Commit

Permalink
fix: missing config
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko233 committed Oct 30, 2024
1 parent ca640dc commit 72221d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pmcenter/Configurations/Conf.ConfObj.New.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public ConfObj()
BannedKeywords = new List<string>();
Banned = new List<BanObj>();
MessageLinks = new List<MessageIDLink>();
EnableOwnerReplyCopyMessage = false ;
}
}
}
Expand Down
1 change: 1 addition & 0 deletions pmcenter/Configurations/Conf.ConfObj.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public sealed partial class ConfObj
public List<string> BannedKeywords { get; set; }
public List<BanObj> Banned { get; set; }
public List<MessageIDLink> MessageLinks { get; set; }
public bool EnableOwnerReplyCopyMessage { get; set; }
}
}
}
1 change: 1 addition & 0 deletions pmcenter/Vars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public static class Vars
// public readonly static string AnonymousChannelTitle = "a user";
// public readonly static string AnonymousChannelUsername = "HiddenSender";

public static bool EnableOwnerReplyCopyMessage = false;
public static bool RestartRequired = false;
public static bool NonEmergRestartRequired = false;
public static bool UpdatePending = false;
Expand Down

0 comments on commit 72221d9

Please sign in to comment.