diff --git a/source/net/filebot/format/SuppressedThrowables.java b/source/net/filebot/format/SuppressedThrowables.java index 96ea9248..99be1cfc 100644 --- a/source/net/filebot/format/SuppressedThrowables.java +++ b/source/net/filebot/format/SuppressedThrowables.java @@ -36,7 +36,7 @@ public class SuppressedThrowables extends RuntimeException { } private static String getMessage(Throwable... causes) { - return stream(causes).map(Throwable::getMessage).map(Objects::toString).distinct().collect(joining("; ")); + return stream(causes).map(Throwable::getMessage).map(Objects::toString).distinct().collect(joining(" | ")); } }