Skip to content

Commit d90d1e0

Browse files
Merge pull request #37 from Instabug/hotfix/fix-setUserName-API-typo
Hotfix/fix set user name api typo
2 parents a733f8a + 99bf1a9 commit d90d1e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativeModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ public void setUserEmail(String userEmail) {
183183
@ReactMethod
184184
public void setUserName(String username) {
185185
try {
186-
mInstabug.setUserName(username);
186+
mInstabug.setUsername(username);
187187
} catch (Exception e) {
188188
e.printStackTrace();
189189
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "instabug-reactnative",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "React Native plugin for integrating the Instabug SDK",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)