Skip to content

Commit

Permalink
Merge pull request #830 from opensrp/zier-issue-fix-201
Browse files Browse the repository at this point in the history
Zier issue fix 201 (Added Missing Exception for the Occuring crash on zier)
  • Loading branch information
dubdabasoduba committed Sep 1, 2021
2 parents cfff3ef + ab6ea3b commit 1f422d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=4.3.18-SNAPSHOT
VERSION_NAME=4.3.19-SNAPSHOT
VERSION_CODE=1
GROUP=org.smartregister
POM_SETTING_DESCRIPTION=OpenSRP Client Core Application
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ public static String getUserInitials() {
}
return initials;
}
catch (ArrayIndexOutOfBoundsException e)
catch (ArrayIndexOutOfBoundsException | StringIndexOutOfBoundsException e)
{
Timber.e("Index out of Bounds "+e.getMessage());
return "";
Expand Down

0 comments on commit 1f422d0

Please sign in to comment.