Skip to content

Commit

Permalink
Merge pull request #64 from JoshCooley/fix-segment-uuid-concatenation
Browse files Browse the repository at this point in the history
Fix segment UUID concatenation
  • Loading branch information
dmunozv04 authored Oct 14, 2023
2 parents b069487 + 245300d commit cece024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iSponsorBlockTV/api_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ async def get_segments(self, vid_id):
segment_dict["start"] - segment_before_end < 1
): # Less than 1 second appart, combine them and skip them together
segment_dict["start"] = segment_before_start
segment_dict["UUID"].append(segment_before_UUID)
segment_dict["UUID"].extend(segment_before_UUID)
segments.pop()
segments.append(segment_dict)
except Exception:
Expand Down

0 comments on commit cece024

Please sign in to comment.