Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KMail
Commits
3b0d1f39
Commit
3b0d1f39
authored
Dec 02, 2020
by
Laurent Montel
😁
Browse files
Don't show warning as by default sometime we don't have this entry
parent
7a373e26
Pipeline
#42720
passed with stage
in 33 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/sieveimapinterface/kmsieveimappasswordprovider.cpp
View file @
3b0d1f39
...
...
@@ -48,7 +48,9 @@ void KMSieveImapPasswordProvider::readSieveServerCustomPasswordFinished(QKeychai
auto
*
job
=
qobject_cast
<
ReadPasswordJob
*>
(
baseJob
);
Q_ASSERT
(
job
);
if
(
job
->
error
())
{
qCWarning
(
KMAIL_LOG
)
<<
"An error occurred while reading password: "
<<
job
->
errorString
();
if
(
job
->
error
()
!=
QKeychain
::
EntryNotFound
)
{
qCWarning
(
KMAIL_LOG
)
<<
"An error occurred while reading password: "
<<
job
->
errorString
();
}
}
else
{
mSieveCustomPassword
=
job
->
textData
();
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment