@@ -218,6 +218,7 @@ public class ConsentSvc {
@RequestMapping(value = "getOcrTag", method = RequestMethod.POST)
public String getOcrTag() {
- return consentService.getOcrTag();
+ String ocrTag = consentService.getOcrTag();
+ return ocrTag;
}