Skip to content
2 changes: 1 addition & 1 deletion packages/webrtc/src/RTCPeer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ export default class RTCPeer<EventTypes extends EventEmitter.ValidEventTypes> {
// Check if signalingState have the right state to sand an offer
return (
this.type === 'offer' &&
!['have-local-offer', 'have-local-pranswer'].includes(
['have-local-offer', 'have-local-pranswer'].includes(
this.instance.signalingState
)
)
Expand Down
Loading