default displayReports to true, as that is the current functionality

This commit is contained in:
jesopo 2022-07-07 11:21:45 +00:00
parent ca2c8e535f
commit 8909e4d4d7

View File

@ -54,6 +54,10 @@ interface IConfig {
*/
backgroundDelayMS: number;
pollReports: boolean;
/**
* Whether or not new reports, received either by webapi or polling,
* should be printed to our managementRoom.
*/
displayReports: boolean;
admin?: {
enableMakeRoomAdminCommand?: boolean;
@ -125,7 +129,7 @@ const defaultConfig: IConfig = {
protectAllJoinedRooms: false,
backgroundDelayMS: 500,
pollReports: false,
displayReports: false,
displayReports: true,
commands: {
allowNoPrefix: false,
additionalPrefixes: [],