We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bf32e2 commit 31ce725Copy full SHA for 31ce725
src/main/java/tla/backend/service/EntityService.java
@@ -189,6 +189,9 @@ public T retrieve(String id) {
189
*/
190
public SingleDocumentWrapper<? extends AbstractDto> getDetails(String id) {
191
T document = this.retrieve(id);
192
+ if (document == null) {
193
+ document = this.retrieve(id.concat("-00")); // try again as an instance of a sentence variant
194
+ }
195
final SingleDocumentWrapper<?> container;
196
if (document != null) {
197
container = new SingleDocumentWrapper<>(
0 commit comments