* Addressbook/Mobile theme: fix opening contacts fails in mobile theme

This commit is contained in:
Hadi Nategh 2021-07-26 15:15:15 +02:00
parent 8ffba9d400
commit f4ea5b82cb
2 changed files with 3 additions and 0 deletions

View File

@ -1262,6 +1262,8 @@ var AddressbookApp = /** @class */ (function (_super) {
* @param _selected
*/
AddressbookApp.prototype.videoconference_isUserOnline = function (_action, _selected) {
if (egwIsMobile())
return false;
var list = app.status ? app.status.getEntireList() : {};
for (var sel in _selected) {
if (sel == '0' && _selected[sel]['id'] == 'nm')

View File

@ -1528,6 +1528,7 @@ class AddressbookApp extends EgwApp
*/
private videoconference_isUserOnline(_action, _selected)
{
if (egwIsMobile()) return false;
let list = app.status ? app.status.getEntireList() : {};
for (let sel in _selected)
{