Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
mwangggg committed Oct 2, 2023
1 parent bc466ca commit ade8102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/Recordings/ActiveRecordingsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export const ActiveRecordingsTable: React.FC<ActiveRecordingsTableProps> = (prop
context.notificationChannel.messages(NotificationCategory.SnapshotCreated),
),
]).subscribe(([currentTarget, event]) => {
if (() && (currentTarget?.jvmId != event.message.jvmId)) {
if ((currentTarget?.connectUrl != event.message.target) && (currentTarget?.jvmId != event.message.jvmId)) {
return;
}
setRecordings((old) => old.concat([event.message.recording]));
Expand Down

0 comments on commit ade8102

Please sign in to comment.