Skip to content

Commit a3d2f7e

Browse files
committed
Minor fixes
1 parent 8acc530 commit a3d2f7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/streamingDelegate.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ export class StreamingDelegate implements CameraStreamingDelegate {
267267
const resized = await this.resizeSnapshot(snapshot, resolution.resizeFilter);
268268
callback(undefined, resized);
269269
} catch (err) {
270-
this.log.error(err, this.cameraName);
271-
callback(err);
270+
this.log.error(err as string, this.cameraName);
271+
callback();
272272
}
273273
}
274274

0 commit comments

Comments
 (0)