Skip to content

Commit

Permalink
fix: Fixes an error when startmuted is on. Fixes #433.
Browse files Browse the repository at this point in the history
  • Loading branch information
damencho committed Jul 1, 2022
1 parent 336a0d8 commit afa4881
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/jitsi/jigasi/JigasiBundleActivator.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,12 @@ public void startWithServices(final BundleContext bundleContext)
osgiContext = bundleContext;
configService = getService(ConfigurationService.class);

StartMutedProvider.registerStartMutedProvider();

if (isSipEnabled())
{
if (isSipStartMutedEnabled())
{
StartMutedProvider.registerStartMutedProvider();
MuteIqProvider.registerMuteIqProvider();
}

Expand Down

0 comments on commit afa4881

Please sign in to comment.