File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
android/src/main/java/com/instabug/reactlibrary Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,6 @@ public void invokeWithInvocationMode(String invocationMode) {
247247 } else {
248248 mode = InstabugInvocationMode .PROMPT_OPTION ;
249249 }
250-
251250 try {
252251 mInstabug .invoke (mode );
253252 } catch (Exception e ) {
@@ -1649,16 +1648,16 @@ public void setWelcomeMessageMode(String welcomeMessageMode) {
16491648 try {
16501649 switch (welcomeMessageMode ) {
16511650 case WELCOME_MESSAGE_MODE_LIVE :
1652- Instabug .showWelcomeMessage (WelcomeMessage .State .LIVE );
1651+ Instabug .setWelcomeMessageState (WelcomeMessage .State .LIVE );
16531652 break ;
16541653 case WELCOME_MESSAGE_MODE_BETA :
1655- Instabug .showWelcomeMessage (WelcomeMessage .State .BETA );
1654+ Instabug .setWelcomeMessageState (WelcomeMessage .State .BETA );
16561655 break ;
16571656 case WELCOME_MESSAGE_MODE_DISABLED :
1658- Instabug .showWelcomeMessage (WelcomeMessage .State .DISABLED );
1657+ Instabug .setWelcomeMessageState (WelcomeMessage .State .DISABLED );
16591658 break ;
16601659 default :
1661- Instabug .showWelcomeMessage (WelcomeMessage .State .LIVE );
1660+ Instabug .setWelcomeMessageState (WelcomeMessage .State .LIVE );
16621661 }
16631662
16641663 } catch (Exception e ) {
You can’t perform that action at this time.
0 commit comments