summaryrefslogtreecommitdiffstats
path: root/src/RoomDirectoryModel.cpp
diff options
context:
space:
mode:
authorkamathmanu <manuriddle@gmail.com>2021-08-12 10:45:42 -0400
committerkamathmanu <manuriddle@gmail.com>2021-08-12 10:45:42 -0400
commit9ab129613177f974afd10070e3a7d065d7aebbfa (patch)
tree1792c826a6f7cf101a6bc1b4bcece6728cebfafc /src/RoomDirectoryModel.cpp
parentf2560b7531aeb97d4c581fcc19205d192606a2d2 (diff)
Ran qmlformat and make license
Diffstat (limited to 'src/RoomDirectoryModel.cpp')
-rw-r--r--src/RoomDirectoryModel.cpp31
1 files changed, 16 insertions, 15 deletions
diff --git a/src/RoomDirectoryModel.cpp b/src/RoomDirectoryModel.cpp
index 7d6be13e..5873771f 100644
--- a/src/RoomDirectoryModel.cpp
+++ b/src/RoomDirectoryModel.cpp
@@ -82,10 +82,10 @@ RoomDirectoryModel::getViasForRoom(const std::vector<std::string> &aliases)
vias.reserve(aliases.size());
- std::transform(
- aliases.begin(), aliases.end(), std::back_inserter(vias), [](const auto &alias) {
- return alias.substr(alias.find(":") + 1);
- });
+ std::transform(aliases.begin(),
+ aliases.end(),
+ std::back_inserter(vias),
+ [](const auto &alias) { return alias.substr(alias.find(":") + 1); });
return vias;
}
@@ -126,7 +126,8 @@ RoomDirectoryModel::data(const QModelIndex &index, int role) const
void
RoomDirectoryModel::fetchMore(const QModelIndex &)
{
- if (!canFetchMore_) return;
+ if (!canFetchMore_)
+ return;
nhlog::net()->debug("Fetching more rooms from mtxclient...");
@@ -137,18 +138,18 @@ RoomDirectoryModel::fetchMore(const QModelIndex &)
// req.third_party_instance_id = third_party_instance_id;
auto requested_server = server_;
- reachedEndOfPagination_ = false;
- emit reachedEndOfPaginationChanged();
+ reachedEndOfPagination_ = false;
+ emit reachedEndOfPaginationChanged();
- loadingMoreRooms_ = true;
- emit loadingMoreRoomsChanged();
+ loadingMoreRooms_ = true;
+ emit loadingMoreRoomsChanged();
http::client()->post_public_rooms(
req,
[requested_server, this, req](const mtx::responses::PublicRooms &res,
mtx::http::RequestErr err) {
- loadingMoreRooms_ = false;
- emit loadingMoreRoomsChanged();
+ loadingMoreRooms_ = false;
+ emit loadingMoreRoomsChanged();
if (err) {
nhlog::net()->error(
@@ -184,12 +185,12 @@ RoomDirectoryModel::displayRooms(std::vector<mtx::responses::PublicRoomsChunk> f
endInsertRows();
if (next_batch.empty()) {
- canFetchMore_ = false;
- reachedEndOfPagination_ = true;
- emit reachedEndOfPaginationChanged();
+ canFetchMore_ = false;
+ reachedEndOfPagination_ = true;
+ emit reachedEndOfPaginationChanged();
}
prevBatch_ = next_batch;
- nhlog::ui()->debug ("Finished loading rooms");
+ nhlog::ui()->debug("Finished loading rooms");
}