mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
commit
2050d367b1
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ dependencies {
|
|||
implementation 'it.unimi.dsi:fastutil-core:8.5.9'
|
||||
implementation 'commons-codec:commons-codec:1.15'
|
||||
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
||||
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:389ec4bd58b8b18ea0296cb63e156c524cfc3fe0'
|
||||
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:895a175ee4126c04f52f888cb20f9c97b6afab34'
|
||||
implementation 'com.github.FireMasterK:nanojson:5df3e81e87b791d01f132f376e4b7d4a1780f346'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.4'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.4'
|
||||
|
|
|
@ -20,7 +20,7 @@ public class ExceptionHandler {
|
|||
if (e.getCause() != null && (e instanceof ExecutionException || e instanceof CompletionException))
|
||||
e = (Exception) e.getCause();
|
||||
|
||||
if (!(e instanceof ContentNotAvailableException)) {
|
||||
if (!(e instanceof ContentNotAvailableException || e instanceof ErrorResponse)) {
|
||||
Sentry.captureException(e);
|
||||
if (Constants.SENTRY_DSN.isEmpty()) {
|
||||
if (path != null)
|
||||
|
|
Loading…
Reference in a new issue