Don't fail video send on postprocess failure.

This commit is contained in:
Nicholas Tinsley
2024-01-25 13:32:03 -05:00
parent c584156c86
commit d2cbf11264
3 changed files with 25 additions and 3 deletions

View File

@@ -185,7 +185,7 @@ public final class InMemoryTranscoder implements Closeable {
final Throwable cause = e.getCause();
if (cause instanceof IOException) {
throw (IOException) cause;
} else if ( cause instanceof EncodingException) {
} else if (cause instanceof EncodingException) {
throw (EncodingException) cause;
}
}