Skip to content

Commit

Permalink
Update vmess.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Toperlock authored Dec 4, 2023
1 parent 569d551 commit dcc6ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsers/vmess.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def parse(data):
'server': item.get('add'),
'server_port': int(item.get('port')),
'uuid': item.get('id'),
'security': item.get('scy') if item.get('scy') else 'auto',
'security': item.get('scy') if item.get('scy') != 'http' else 'auto',
'alter_id': int(item.get('aid','0')),
'packet_encoding': 'xudp'
}
Expand Down

0 comments on commit dcc6ca3

Please sign in to comment.