mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2025-04-29 16:30:29 +05:30
Merge pull request #414 from TeamPiped/sentry-fix
Add videoId scope and fix sentry transaction trace.
This commit is contained in:
commit
9a143f67b5
@ -37,12 +37,18 @@ import static org.schabi.newpipe.extractor.services.youtube.YoutubeParsingHelper
|
||||
public class StreamHandlers {
|
||||
public static byte[] streamsResponse(String videoId) throws Exception {
|
||||
|
||||
Sentry.configureScope(scope -> {
|
||||
scope.setContexts("videoId", videoId);
|
||||
});
|
||||
|
||||
final var futureStream = Multithreading.supplyAsync(() -> {
|
||||
ITransaction transaction = Sentry.startTransaction("StreamInfo fetch", "fetch");
|
||||
try {
|
||||
return StreamInfo.getInfo("https://www.youtube.com/watch?v=" + videoId);
|
||||
} catch (Exception e) {
|
||||
ExceptionUtils.rethrow(e);
|
||||
} finally {
|
||||
transaction.finish();
|
||||
}
|
||||
return null;
|
||||
});
|
||||
@ -189,6 +195,10 @@ public class StreamHandlers {
|
||||
|
||||
public static byte[] commentsResponse(String videoId) throws Exception {
|
||||
|
||||
Sentry.configureScope(scope -> {
|
||||
scope.setContexts("videoId", videoId);
|
||||
});
|
||||
|
||||
CommentsInfo info = CommentsInfo.getInfo("https://www.youtube.com/watch?v=" + videoId);
|
||||
|
||||
List<Comment> comments = new ObjectArrayList<>();
|
||||
|
Loading…
x
Reference in New Issue
Block a user