Skip to content

Commit

Permalink
Merge pull request #26 from onaio/feature/fix_tags_bug
Browse files Browse the repository at this point in the history
🐛 Fix the resource ID reference fetch when creating sync tags
  • Loading branch information
dubdabasoduba authored Nov 30, 2023
2 parents d87244b + ead8795 commit 8cfe9a3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions exec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.smartregister</groupId>
<artifactId>opensrp-gateway-plugin</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</parent>

<artifactId>exec</artifactId>
Expand Down Expand Up @@ -70,7 +70,7 @@
<dependency>
<groupId>org.smartregister</groupId>
<artifactId>plugins</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.smartregister</groupId>
<artifactId>opensrp-gateway-plugin</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</parent>

<artifactId>plugins</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ private Bundle getPractitionerRoles(String practitionerId) {

private static String getReferenceIDPart(String reference) {
return reference.substring(
reference.indexOf(org.smartregister.utils.Constants.FORWARD_SLASH) + 1);
reference.lastIndexOf(org.smartregister.utils.Constants.FORWARD_SLASH) + 1);
}

private Bundle getOrganizationsById(Set<String> organizationIds) {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>org.smartregister</groupId>
<artifactId>opensrp-gateway-plugin</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit 8cfe9a3

Please sign in to comment.