Skip to content

Commit

Permalink
Don't mark record as invalid if failsafe delta was triggered
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavion committed Feb 19, 2020
1 parent 1e46c4e commit 09c4f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tvstreamrecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ def doRecord(self):
return
else:
print ("Something went wrong with '%s'. Remaining time is less than fail-safe delta, aborting..." % (self.name))
sqlRun("UPDATE records SET renabled=0 WHERE rowid=?", (self.id, ))
#sqlRun("UPDATE records SET renabled=0 WHERE rowid=?", (self.id, ))
sleep(delta)

self.clean()
Expand Down

0 comments on commit 09c4f93

Please sign in to comment.