aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Matrix.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-05-20 23:08:44 +0200
committerdec05eba <dec05eba@protonmail.com>2021-05-20 23:08:44 +0200
commitbd13b51eb83ef95d46960db920a8572766e91789 (patch)
tree878e4bde837890400d535f792d30c8f9bcfb8bd7 /src/plugins/Matrix.cpp
parent132b77f664eb0f82706b4bd16643fab62155e7fc (diff)
Stop fetching notifications at the end
Diffstat (limited to 'src/plugins/Matrix.cpp')
-rw-r--r--src/plugins/Matrix.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/Matrix.cpp b/src/plugins/Matrix.cpp
index 7992772..49a3988 100644
--- a/src/plugins/Matrix.cpp
+++ b/src/plugins/Matrix.cpp
@@ -1476,6 +1476,8 @@ namespace QuickMedia {
const rapidjson::Value &next_token_json = GetMember(json_root, "next_token");
if(next_token_json.IsString())
set_next_notifications_token(next_token_json.GetString());
+ else
+ set_next_notifications_token("invalid");
return PluginResult::OK;
}
@@ -2782,6 +2784,7 @@ namespace QuickMedia {
const rapidjson::Value &end_json = GetMember(json_root, "end");
if(!end_json.IsString()) {
+ room_data->set_prev_batch("invalid");
fprintf(stderr, "Warning: matrix messages response is missing 'end', this could happen if we received the very first messages in the room\n");
return PluginResult::OK;
}