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
PIM Messagelib
Commits
a9b417b7
Commit
a9b417b7
authored
Jul 20, 2020
by
Laurent Montel
😁
Browse files
Return if we can't set online
parent
bc5f6c44
Pipeline
#27798
failed with stage
in 107 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
messagecomposer/src/composer/composerviewbase.cpp
View file @
a9b417b7
...
...
@@ -347,7 +347,10 @@ void ComposerViewBase::send(MessageComposer::MessageSender::SendMethod method, M
}
if
(
mSendMethod
==
MessageComposer
::
MessageSender
::
SendImmediate
&&
checkMailDispatcher
)
{
MessageComposer
::
Util
::
sendMailDispatcherIsOnline
(
m_parentWidget
);
if
(
!
MessageComposer
::
Util
::
sendMailDispatcherIsOnline
(
m_parentWidget
))
{
qCWarning
(
MESSAGECOMPOSER_LOG
)
<<
"Impossible to set sendmaildispatcher online. Please verify it"
;
return
;
}
}
readyForSending
();
...
...
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