diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-03-17 16:27:23 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-03-17 16:27:23 +0100 |
commit | be7f4d42d70922608ed6898717232bd78fe528e4 (patch) | |
tree | 1fedebb38e416fc268edef844400a034c9862134 /framework/domain/settings/accountsettings.cpp | |
parent | feb1ea5739e2e33c4debcdd21a176f15991a64e5 (diff) | |
download | kube-be7f4d42d70922608ed6898717232bd78fe528e4.tar.gz kube-be7f4d42d70922608ed6898717232bd78fe528e4.zip |
Request sent property and some others
Diffstat (limited to 'framework/domain/settings/accountsettings.cpp')
-rw-r--r-- | framework/domain/settings/accountsettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/domain/settings/accountsettings.cpp b/framework/domain/settings/accountsettings.cpp index d072ea9d..d1019e1f 100644 --- a/framework/domain/settings/accountsettings.cpp +++ b/framework/domain/settings/accountsettings.cpp | |||
@@ -178,7 +178,7 @@ void AccountSettings::saveAccount() | |||
178 | void AccountSettings::loadAccount() | 178 | void AccountSettings::loadAccount() |
179 | { | 179 | { |
180 | Q_ASSERT(!mAccountIdentifier.isEmpty()); | 180 | Q_ASSERT(!mAccountIdentifier.isEmpty()); |
181 | Store::fetchOne<SinkAccount>(Query().filter(mAccountIdentifier)) | 181 | Store::fetchOne<SinkAccount>(Query().filter(mAccountIdentifier).request<SinkAccount::Icon>().request<SinkAccount::Name>().request<SinkAccount::AccountType>()) |
182 | .then([this](const SinkAccount &account) { | 182 | .then([this](const SinkAccount &account) { |
183 | mAccountType = account.getAccountType().toLatin1(); | 183 | mAccountType = account.getAccountType().toLatin1(); |
184 | mIcon = account.getIcon(); | 184 | mIcon = account.getIcon(); |