UTF8 bug fix
This commit is contained in:
parent
4bf9657682
commit
368538ddd4
|
@ -118,7 +118,7 @@ public class RepositoryServiceImpl implements RepositoryService {
|
||||||
LOGGER.debug("Updated version!");
|
LOGGER.debug("Updated version!");
|
||||||
|
|
||||||
httpHeaders = new HttpHeaders();
|
httpHeaders = new HttpHeaders();
|
||||||
httpHeaders.set("Content-Type", "application/json");
|
httpHeaders.setContentType(MediaType.APPLICATION_JSON_UTF8);
|
||||||
|
|
||||||
for (String vocName : vocabularyNames) {
|
for (String vocName : vocabularyNames) {
|
||||||
vocabularyMap.put(vocName, vocabularyLoader.getVocabulary(vocName, Locale.ENGLISH, Locale.ROOT));
|
vocabularyMap.put(vocName, vocabularyLoader.getVocabulary(vocName, Locale.ENGLISH, Locale.ROOT));
|
||||||
|
|
Loading…
Reference in New Issue