Fix some linting issues

pull/100/head
Joseph Donofry 6 years ago
parent 713f9dbe89
commit 175737c28b
No known key found for this signature in database
GPG Key ID: E8A1D78EF044B0CB
  1. 3
      src/Cache.cpp

@ -2201,7 +2201,8 @@ from_json(const json &j, RoomInfo &info)
info.name = j.at("name");
info.topic = j.at("topic");
info.avatar_url = j.at("avatar_url");
info.version = j.value("version", QCoreApplication::translate("RoomInfo", "no version stored").toStdString());
info.version = j.value(
"version", QCoreApplication::translate("RoomInfo", "no version stored").toStdString());
info.is_invite = j.at("is_invite");
info.join_rule = j.at("join_rule");
info.guest_access = j.at("guest_access");

Loading…
Cancel
Save