Skip to content

Commit

Permalink
fix vless inbound flow
Browse files Browse the repository at this point in the history
  • Loading branch information
alireza0 committed Feb 27, 2024
1 parent 19a6053 commit 204e0d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/Inbounds.vue
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ const buildInboundsUsers = (inbound:InboundWithUser):Inbound => {
// Remove flow in non tls VLESS
if (inbound.type == InTypes.VLESS) {
const vlessInbound = <VLESS>inbound
if (!vlessInbound.tls?.enabled) clientConfig["vless"].flow = undefined
if (!vlessInbound.tls?.enabled) delete(clientConfig["vless"].flow)
}
users.push(clientConfig[inbound.type])
})
Expand Down

0 comments on commit 204e0d3

Please sign in to comment.