mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Modify Correspondence::sendMessage behaviour because current behaviour is useless and confusing
This commit is contained in:
parent
59f831a3f4
commit
1cfb680a2c
1 changed files with 1 additions and 2 deletions
|
@ -110,7 +110,7 @@ class Correspondence
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send message as user, who is currently logged in.
|
* Send message.
|
||||||
*
|
*
|
||||||
* @deprecated
|
* @deprecated
|
||||||
* @returns Message|false - resulting message, or false in case of non-successful transaction
|
* @returns Message|false - resulting message, or false in case of non-successful transaction
|
||||||
|
@ -122,7 +122,6 @@ class Correspondence
|
||||||
|
|
||||||
$ids = [$this->correspondents[0]->getId(), $this->correspondents[1]->getId()];
|
$ids = [$this->correspondents[0]->getId(), $this->correspondents[1]->getId()];
|
||||||
$classes = [get_class($this->correspondents[0]), get_class($this->correspondents[1])];
|
$classes = [get_class($this->correspondents[0]), get_class($this->correspondents[1])];
|
||||||
if(!in_array($user->getId(), $ids)) return false;
|
|
||||||
if($ids[1] === $user->getId() && !$dontReverse) {
|
if($ids[1] === $user->getId() && !$dontReverse) {
|
||||||
$ids = array_reverse($ids);
|
$ids = array_reverse($ids);
|
||||||
$classes = array_reverse($classes);
|
$classes = array_reverse($classes);
|
||||||
|
|
Loading…
Reference in a new issue