Jitsi widget: always accept to join ongoing jitsi conf. Only the creation is under the settings

This commit is contained in:
manuroe
2017-08-17 18:59:58 +02:00
parent bb74310d99
commit 0bfc10eae8
+2 -5
View File
@@ -429,11 +429,8 @@
{
Widget *jitsiWidget;
// Manage only one jitsi widget at a time for the moment
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"useJitsiForConferenceCalls"])
{
jitsiWidget = [[WidgetManager sharedManager] widgetsOfTypes:@[kWidgetTypeJitsi] inRoom:self.room].firstObject;
}
// Note: Manage only one jitsi widget at a time for the moment
jitsiWidget = [[WidgetManager sharedManager] widgetsOfTypes:@[kWidgetTypeJitsi] inRoom:self.room].firstObject;
return jitsiWidget;
}