Skip to content

Commit

Permalink
🐳 chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
andywang425 committed Aug 5, 2023
1 parent 38ba132 commit ac03aef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/modules/enhanceExperience/banP2P.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ class BanP2P extends BaseModule {
config = this.moduleStore.moduleConfig.EnhanceExperience.banp2p

private async banP2P() {
const RTClist = ['RTCPeerConnection', 'mozRTCPeerConnection', 'webkitRTCPeerConnection']
const RTClist: string[] = [
'RTCPeerConnection',
'mozRTCPeerConnection',
'webkitRTCPeerConnection'
]
for (const i of RTClist) {
// 判断属性是否存在并且是否可配置
if (
Expand Down

0 comments on commit ac03aef

Please sign in to comment.