mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
Fix ChatLocation
This commit is contained in:
parent
f4c294a77c
commit
2960959716
@ -23,10 +23,10 @@ public function cache(\wcf\data\user\online\UserOnline $user) {}
|
|||||||
public function get(\wcf\data\user\online\UserOnline $user, $languageVariable = '') {
|
public function get(\wcf\data\user\online\UserOnline $user, $languageVariable = '') {
|
||||||
$rooms = data\room\RoomCache::getInstance()->getRooms();
|
$rooms = data\room\RoomCache::getInstance()->getRooms();
|
||||||
|
|
||||||
if (isset($cache[$user->objectID])) {
|
if (isset($rooms[$user->objectID])) {
|
||||||
if ($cache[$user->objectID]->canEnter()) {
|
if ($rooms[$user->objectID]->canEnter()) {
|
||||||
return \wcf\system\WCF::getLanguage()->getDynamicVariable($languageVariable, array(
|
return \wcf\system\WCF::getLanguage()->getDynamicVariable($languageVariable, array(
|
||||||
'room' => $cache[$user->objectID]
|
'room' => $rooms[$user->objectID]
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user