Skip to content

Commit

Permalink
no need for extra var
Browse files Browse the repository at this point in the history
  • Loading branch information
fzwoch committed Apr 27, 2023
1 parent 4dd9123 commit fc230c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ func (t *teleportSource) newPacket(p *Packet) {
p.DoneProcessing = true

for len(t.queue) > 0 && t.queue[0].DoneProcessing {
p := t.queue[0]
p = t.queue[0]

if t.isAudioAndVideo {
hasAudioAndVideo := false
Expand Down

0 comments on commit fc230c1

Please sign in to comment.