codysherman / 2nfm

Share your screen and computer's audio via WebRTC!
https://2n.fm
BSD 3-Clause "New" or "Revised" License
31 stars 16 forks source link

Fixed #82 and #101 #117

Closed jvuong1029 closed 4 years ago

mphipps2017 commented 4 years ago

For the ReceiverConnection.vue, the connection needs to be closed as well. (Similar to how you did it in StreamerConnection.vue). This code worked for me when I tested it.

beforeDestroy() {
    this.connection = null;
    delete this.connection;
  },