awaystore: ping when requesting to come back

When using the `back` command, also call `Ping()`. Otherwise, we will
be marked away in less than a minute.

(cherry picked from commit 459afe11e8)
This commit is contained in:
Vincent Bernat
2013-11-04 23:13:30 +01:00
committed by Alexey Sokolov
parent b29e7d57b2
commit 1a37a39a57
+1
View File
@@ -67,6 +67,7 @@ class CAway : public CModule
void BackCommand(const CString& sCommand) {
if ((m_vMessages.empty()) && (sCommand.Token(1) != "-quiet"))
PutModNotice("Welcome Back!");
Ping();
Back();
}