diff --git a/photon-client/src/components/dashboard/tabs/InputTab.vue b/photon-client/src/components/dashboard/tabs/InputTab.vue index 097607001..7b52f9808 100644 --- a/photon-client/src/components/dashboard/tabs/InputTab.vue +++ b/photon-client/src/components/dashboard/tabs/InputTab.vue @@ -61,10 +61,9 @@ const currentStreamResolutionIndex = computed({ return stored - skipped; }, set: (index) => { - useCameraSettingsStore().changeCurrentPipelineSetting( - { streamingFrameDivisor: index + getNumberOfSkippedDivisors() }, - false - ); + useCameraSettingsStore().changeCurrentPipelineSetting({ + streamingFrameDivisor: index + getNumberOfSkippedDivisors() + }); } }); const { mdAndDown } = useDisplay();