From 569b360a8e6fdf7957793e4656c3ddb5f10de717 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Thu, 3 Dec 2020 10:39:22 +0100 Subject: [PATCH] Fixed default channel conversation mode --- src/PropertyDefinition.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PropertyDefinition.h b/src/PropertyDefinition.h index 034f995..d3075ed 100644 --- a/src/PropertyDefinition.h +++ b/src/PropertyDefinition.h @@ -149,7 +149,7 @@ property_list = std::array{ PropertyDescription{CHANNEL_CREATED_AT, "channel_created_at", "0", TYPE_UNSIGNED_NUMBER, FLAG_SS | FLAG_CHANNEL_VIEW | FLAG_CHANNEL_VARIABLE | FLAG_NEW}, //Available for all channels that are "in view", always up-to-date PropertyDescription{CHANNEL_CREATED_BY, "channel_created_by", "0", TYPE_UNSIGNED_NUMBER, FLAG_SS | FLAG_CHANNEL_VIEW | FLAG_CHANNEL_VARIABLE | FLAG_NEW}, //Available for all channels that are "in view", always up-to-date PropertyDescription{CHANNEL_CONVERSATION_HISTORY_LENGTH, "channel_conversation_history_length", "1500", TYPE_SIGNED_NUMBER, FLAG_SS | FLAG_CHANNEL_VIEW | FLAG_CHANNEL_VARIABLE | FLAG_NEW | FLAG_USER_EDITABLE}, - PropertyDescription{CHANNEL_CONVERSATION_MODE, "channel_conversation_mode", "1", TYPE_UNSIGNED_NUMBER, FLAG_SS | FLAG_CHANNEL_VIEW | FLAG_CHANNEL_VARIABLE | FLAG_NEW | FLAG_USER_EDITABLE}, + PropertyDescription{CHANNEL_CONVERSATION_MODE, "channel_conversation_mode", "0", TYPE_UNSIGNED_NUMBER, FLAG_SS | FLAG_CHANNEL_VIEW | FLAG_CHANNEL_VARIABLE | FLAG_NEW | FLAG_USER_EDITABLE}, /* group properties, this may gets removed */ PropertyDescription{GROUP_UNDEFINED, "undefined", "", TYPE_UNKNOWN, 0},