Removing scheduling messages until online for those who hide their online.

This commit is contained in:
23rd 2020-01-23 10:43:52 +03:00 committed by John Preston
parent 1bcde1b55c
commit 8298caddc3
1 changed files with 4 additions and 1 deletions

View File

@ -563,7 +563,10 @@ TimeId DefaultScheduleTime() {
}
bool CanScheduleUntilOnline(not_null<PeerData*> peer) {
return !peer->isSelf() && peer->isUser() && !peer->asUser()->isBot();
return !peer->isSelf()
&& peer->isUser()
&& !peer->asUser()->isBot()
&& (peer->asUser()->onlineTill > 0);
}
void ScheduleBox(