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) {
247
247
} else {
248
248
mode = InstabugInvocationMode .PROMPT_OPTION ;
249
249
}
250
-
251
250
try {
252
251
mInstabug .invoke (mode );
253
252
} catch (Exception e ) {
@@ -1649,16 +1648,16 @@ public void setWelcomeMessageMode(String welcomeMessageMode) {
1649
1648
try {
1650
1649
switch (welcomeMessageMode ) {
1651
1650
case WELCOME_MESSAGE_MODE_LIVE :
1652
- Instabug .showWelcomeMessage (WelcomeMessage .State .LIVE );
1651
+ Instabug .setWelcomeMessageState (WelcomeMessage .State .LIVE );
1653
1652
break ;
1654
1653
case WELCOME_MESSAGE_MODE_BETA :
1655
- Instabug .showWelcomeMessage (WelcomeMessage .State .BETA );
1654
+ Instabug .setWelcomeMessageState (WelcomeMessage .State .BETA );
1656
1655
break ;
1657
1656
case WELCOME_MESSAGE_MODE_DISABLED :
1658
- Instabug .showWelcomeMessage (WelcomeMessage .State .DISABLED );
1657
+ Instabug .setWelcomeMessageState (WelcomeMessage .State .DISABLED );
1659
1658
break ;
1660
1659
default :
1661
- Instabug .showWelcomeMessage (WelcomeMessage .State .LIVE );
1660
+ Instabug .setWelcomeMessageState (WelcomeMessage .State .LIVE );
1662
1661
}
1663
1662
1664
1663
} catch (Exception e ) {
You can’t perform that action at this time.
0 commit comments