Skip to content

Commit f45b929

Browse files
committed
Don't include the delimiter in the imageId
1 parent 174c361 commit f45b929

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • library/src/main/java/com/proxerme/library/connection/messenger/entity

library/src/main/java/com/proxerme/library/connection/messenger/entity/Conference.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public String getImageId() {
149149
if (delimiterIndex < 0) {
150150
return EMPTY_RESULT;
151151
} else {
152-
return image.substring(delimiterIndex);
152+
return image.substring(delimiterIndex + 1);
153153
}
154154
}
155155
}

0 commit comments

Comments
 (0)