Skip to content
Snippets Groups Projects
Commit bc5af75c authored by Aline Gondim Santos's avatar Aline Gondim Santos Committed by Aline Gondim Santos
Browse files

plugins: fix empty plugins list

Change-Id: I8e0b75a09198b644b714aa6fb5a9e48d9a2a75f0
parent f74397d1
No related branches found
No related tags found
No related merge requests found
......@@ -59,8 +59,8 @@ Popup {
function onAboutToShow(visible) {
if (isCall) {
// Reset the model on each show.
var callId = UtilsAdapter.getCallId(callStackViewWindow.responsibleAccountId,
callStackViewWindow.responsibleConvUid)
var callId = UtilsAdapter.getCallId(callStackView.responsibleAccountId,
callStackView.responsibleConvUid)
pluginhandlerPickerListView.model = PluginAdapter.getMediaHandlerSelectableModel(callId)
} else {
// Reset the model on each show.
......@@ -73,8 +73,8 @@ Popup {
function toggleHandlerSlot(handlerId, isLoaded) {
if (isCall) {
var callId = UtilsAdapter.getCallId(callStackViewWindow.responsibleAccountId,
callStackViewWindow.responsibleConvUid)
var callId = UtilsAdapter.getCallId(callStackView.responsibleAccountId,
callStackView.responsibleConvUid)
PluginModel.toggleCallMediaHandler(handlerId, callId, !isLoaded)
pluginhandlerPickerListView.model = PluginAdapter.getMediaHandlerSelectableModel(callId)
} else {
......@@ -132,8 +132,8 @@ Popup {
model: {
if (isCall) {
var callId = UtilsAdapter.getCallId(callStackViewWindow.responsibleAccountId,
callStackViewWindow.responsibleConvUid)
var callId = UtilsAdapter.getCallId(callStackView.responsibleAccountId,
callStackView.responsibleConvUid)
return PluginAdapter.getMediaHandlerSelectableModel(callId)
} else {
var accountId = LRCInstance.currentAccountId
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment