aboutsummaryrefslogtreecommitdiffstats
path: root/libmatrix.c
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2015-11-03 15:42:01 +0000
committerRichard van der Hoff <richard@matrix.org>2015-11-03 15:42:01 +0000
commit6322cd5a34989100f7650e750aa3b5fca7904a35 (patch)
treead64820deddd1bbb5093d1f9baea4618fb3f685f /libmatrix.c
parent8010ec55ebc9356a6a5986260ba9d3ee2cebadab (diff)
downloadpurple-matrix-6322cd5a34989100f7650e750aa3b5fca7904a35.tar.gz
Invert the sense of the 'full_state' flag
Inverting it allows us to include a warning that it needs a bleeding-edge synapse.
Diffstat (limited to 'libmatrix.c')
-rw-r--r--libmatrix.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libmatrix.c b/libmatrix.c
index 0908cde..ddd24fc 100644
--- a/libmatrix.c
+++ b/libmatrix.c
@@ -334,8 +334,9 @@ static void matrixprpl_init(PurplePlugin *plugin)
DEFAULT_HOME_SERVER));
protocol_options = g_list_append(protocol_options,
purple_account_option_bool_new(
- _("On reconnect, replay recent messages from joined rooms"),
- PRPL_ACCOUNT_OPT_REPLAY_OLD_MESSAGES, TRUE));
+ _("On reconnect, skip messages which were received in a "
+ "previous session (requires development homeserver)"),
+ PRPL_ACCOUNT_OPT_SKIP_OLD_MESSAGES, FALSE));
prpl_info.protocol_options = protocol_options;
}