mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Change how decrypt value is retrieved from settings
This commit is contained in:
parent
b00e624fb0
commit
994edb836c
4 changed files with 13 additions and 3 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -6,6 +6,7 @@ cscope*
|
|||
/.ccls-cache
|
||||
/.exrc
|
||||
.gdb_history
|
||||
.hunter
|
||||
|
||||
# GTAGS
|
||||
GTAGS
|
||||
|
@ -70,7 +71,8 @@ install_manifest.txt
|
|||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
Icon
|
||||
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
|
|
@ -514,6 +514,12 @@ TimelineModel::updateLastMessage()
|
|||
{
|
||||
// Get the user setting to show decrypted messages in side bar
|
||||
bool decrypt = QSettings().value("user/decrypt_sidebar", true).toBool();
|
||||
updateLastMessage(decrypt);
|
||||
}
|
||||
|
||||
void
|
||||
TimelineModel::updateLastMessage(bool decrypt)
|
||||
{
|
||||
for (auto it = eventOrder.begin(); it != eventOrder.end(); ++it) {
|
||||
auto event = events.value(*it);
|
||||
if (auto e = std::get_if<mtx::events::EncryptedEvent<mtx::events::msg::Encrypted>>(
|
||||
|
|
|
@ -189,7 +189,7 @@ public:
|
|||
Q_INVOKABLE void cacheMedia(QString eventId);
|
||||
Q_INVOKABLE bool saveMedia(QString eventId) const;
|
||||
|
||||
void updateLastMessage();
|
||||
void updateLastMessage(bool);
|
||||
void addEvents(const mtx::responses::Timeline &events);
|
||||
template<class T>
|
||||
void sendMessage(const T &msg);
|
||||
|
@ -259,6 +259,7 @@ private:
|
|||
const mtx::responses::ClaimKeys &res,
|
||||
mtx::http::RequestErr err);
|
||||
void readEvent(const std::string &id);
|
||||
void updateLastMessage();
|
||||
|
||||
QHash<QString, mtx::events::collections::TimelineEvents> events;
|
||||
QSet<QString> read;
|
||||
|
|
|
@ -19,12 +19,13 @@ Q_DECLARE_METATYPE(mtx::events::collections::TimelineEvents)
|
|||
void
|
||||
TimelineViewManager::updateEncryptedDescriptions()
|
||||
{
|
||||
auto decrypt = settings->isDecryptSidebarEnabled();
|
||||
QHash<QString, QSharedPointer<TimelineModel>>::iterator i;
|
||||
for (i = models.begin(); i != models.end(); ++i) {
|
||||
auto ptr = i.value();
|
||||
|
||||
if (!ptr.isNull()) {
|
||||
ptr->updateLastMessage();
|
||||
ptr->updateLastMessage(decrypt);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue