Skip to content

Commit

Permalink
don't restart recording if paused
Browse files Browse the repository at this point in the history
  • Loading branch information
lhns committed Nov 3, 2020
1 parent 3558a0a commit 19de675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autosplitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function recording_stopped(func)
end

function recording_restart()
if obs.obs_frontend_recording_active() then
if obs.obs_frontend_recording_active() and not obs.obs_frontend_recording_paused() then
obs.obs_frontend_recording_stop()

recording_stopped(
Expand Down

0 comments on commit 19de675

Please sign in to comment.