File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ module.exports = {
364
364
* @param {strings } key Key of string to override.
365
365
*/
366
366
setStringToKey : function ( string , key ) {
367
- Instabug . setString ( string , key ) ;
367
+ Instabug . setString ( string , key ) ;
368
368
} ,
369
369
370
370
/**
@@ -620,6 +620,8 @@ module.exports = {
620
620
getUserAttribute : function ( key , userAttributeCallback ) {
621
621
if ( Platform . OS === 'ios' ) {
622
622
return Instabug . getUserAttribute ( key , userAttributeCallback ) ;
623
+ } else if ( Platform . OS === 'android' ) {
624
+ return Instabug . getUserAttribute ( key ) ;
623
625
}
624
626
} ,
625
627
@@ -643,6 +645,8 @@ module.exports = {
643
645
getAllUserAttributes : function ( userAttributesCallback ) {
644
646
if ( Platform . OS === 'ios' ) {
645
647
return Instabug . getAllUserAttributes ( userAttributesCallback ) ;
648
+ } else if ( Platform . OS === 'android' ) {
649
+ return Instabug . getAllUserAttributes ( ) ;
646
650
}
647
651
} ,
648
652
You can’t perform that action at this time.
0 commit comments