Skip to content
Snippets Groups Projects
Commit 0630d489 authored by Seb Barnard's avatar Seb Barnard :speech_balloon:
Browse files

All new tags are now saved lowercase

parent 949358a5
No related branches found
No related tags found
3 merge requests!114LoggingService service class, new method to add a log to the "Logs" table when...,!104Branch Update,!103Issue thirty four
......@@ -98,7 +98,7 @@ public class BusinessRegisterSaver {
if(tagsLowerList.contains(t.toLowerCase())){
tag = tagsRepo.findByTagNameIgnoreCase(t).get();
}else{
tag = new Tags(t);
tag = new Tags(t.toLowerCase());
tagsRepo.save(tag);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment