Fixed unknown type for manual type

This commit is contained in:
deiflaender 2022-03-24 18:21:01 +01:00
parent 980b01e8d8
commit 9ad923c314

View File

@ -370,7 +370,7 @@ public class RedactionLogMergeService {
if (foundType.isPresent()){ if (foundType.isPresent()){
return convertColor(foundType.get().getHexColor()); return convertColor(foundType.get().getHexColor());
} }
throw new RuntimeException("Unkonwn type"); return convertColor("#9398a0");
} }
@ -379,7 +379,7 @@ public class RedactionLogMergeService {
if (foundType.isPresent()){ if (foundType.isPresent()){
return foundType.get().isHint(); return foundType.get().isHint();
} }
throw new RuntimeException("Unkonwn type"); return false;
} }