Skip to content

Commit dcc0799

Browse files
committed
Fix CameraSource Not Running Pipeline
1 parent f77b936 commit dcc0799

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/edu/wpi/grip/core/sources/CameraSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ protected boolean updateOutputSockets() {
249249
synchronized (currentFrameTransferMat) {
250250
currentFrameTransferMat.copyTo(frameOutputSocket.getValue().get());
251251
}
252-
// Don't call frameOutputSocket.setValue the value is already set.
252+
frameOutputSocket.setValueOptional(frameOutputSocket.getValue());
253253

254254
// Update the frame rate value
255255
frameRateOutputSocket.setValue(frameRate);

0 commit comments

Comments
 (0)