Skip to content

Commit

Permalink
Fixed id conversion exception (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 authored Jan 17, 2024
1 parent 2a910d4 commit bb7cc09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public <P extends Poly> P deleteMetadata(String key) {
}

public String _id() {
return fetch(ID_KEY);
return String.valueOf(fetch(ID_KEY));
}

public BasicPoly _id(String id) {
Expand Down

0 comments on commit bb7cc09

Please sign in to comment.