aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2016-01-04 12:49:59 +1300
committerEion Robb <eion@robbmob.com>2016-01-04 12:49:59 +1300
commita3639601c8df74ba4d3f2bc9bfdac7a40f356d56 (patch)
tree1e9079bb45c338569d483c8f4752062a3fea3c2e
parent8d30ce7bcb808fd47d324ee6ff20d711391e6f08 (diff)
downloadpurple-matrix-a3639601c8df74ba4d3f2bc9bfdac7a40f356d56.tar.gz
Allow user to set their online status
-rw-r--r--libmatrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmatrix.c b/libmatrix.c
index 3f7fc92..3992a50 100644
--- a/libmatrix.c
+++ b/libmatrix.c
@@ -64,11 +64,11 @@ static GList *matrixprpl_status_types(PurpleAccount *acct)
PurpleStatusType *type;
type = purple_status_type_new(PURPLE_STATUS_OFFLINE, "Offline", NULL,
- FALSE);
+ TRUE);
types = g_list_prepend(types, type);
type = purple_status_type_new(PURPLE_STATUS_AVAILABLE, "Online", NULL,
- FALSE);
+ TRUE);
types = g_list_prepend(types, type);
return types;