mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1084499: fix about:webrtc for hello calls r=drno
This commit is contained in:
parent
46ee821c7e
commit
5216f81454
@ -113,7 +113,7 @@ var PeerConnection = React.createClass({displayName: 'PeerConnection',
|
||||
getPCInfo: function(report) {
|
||||
return {
|
||||
id: report.pcid.match(/id=(\S+)/)[1],
|
||||
url: report.pcid.match(/http[^)]+/)[0],
|
||||
url: report.pcid.match(/url=([^)]+)/)[1],
|
||||
closed: report.closed
|
||||
};
|
||||
},
|
||||
|
@ -113,7 +113,7 @@ var PeerConnection = React.createClass({
|
||||
getPCInfo: function(report) {
|
||||
return {
|
||||
id: report.pcid.match(/id=(\S+)/)[1],
|
||||
url: report.pcid.match(/http[^)]+/)[0],
|
||||
url: report.pcid.match(/url=([^)]+)/)[1],
|
||||
closed: report.closed
|
||||
};
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user