fix error when status app is not available

This commit is contained in:
Ralf Becker 2020-04-22 09:23:10 +02:00
parent 83bd7cadb1
commit 32f08d0a61

View File

@ -1318,7 +1318,7 @@ app.classes.addressbook = AppJS.extend(
*/ */
videoconference_isUserOnline: function(_action, _selected) videoconference_isUserOnline: function(_action, _selected)
{ {
let list = app.status.getEntireList(); let list = app.status ? app.status.getEntireList() : {};
for (let sel in _selected) for (let sel in _selected)
{ {