Skip to content

Commit

Permalink
Fix issue with live recording
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerSelwyn committed Nov 9, 2022
1 parent 7cd383b commit 54b605b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyskyqremote/classes/recordings.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def _build_recording_times(self, status, recording):
)
elif status == "RECORDING":
starttimestamp = recording["ast"]
if recording["fr"] == "N/A":
if "fr" not in recording or recording["fr"] == "N/A":
usedtimestamp = (
recording["ast"]
if recording["ast"] > recording["st"]
Expand Down

0 comments on commit 54b605b

Please sign in to comment.