From 4433dbb5203882afa70c2e7d446610fe15ea98be Mon Sep 17 00:00:00 2001 From: NekoCareLab <194696930+NekoCareLab@users.noreply.github.com> Date: Sun, 12 Jan 2025 23:22:00 +0800 Subject: [PATCH] Fixed Vmess TCP for clash and clashmeta --- app/Protocols/Clash.php | 10 ++++++---- app/Protocols/ClashMeta.php | 10 ++++++---- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/app/Protocols/Clash.php b/app/Protocols/Clash.php index ca649af..ea107c0 100644 --- a/app/Protocols/Clash.php +++ b/app/Protocols/Clash.php @@ -159,10 +159,12 @@ class Clash implements ProtocolInterface switch (data_get($protocol_settings, 'network')) { case 'tcp': $array['network'] = data_get($protocol_settings, 'network_settings.header.type'); - $array['http-opts'] = [ - 'headers' => data_get($protocol_settings, 'network_settings.header.request.headers'), - 'path' => \Arr::random(data_get($protocol_settings, 'network_settings.header.request.path', ['/'])) - ]; + if (data_get($protocol_settings, 'network_settings.header.type', 'none') !== 'none') { + $array['http-opts'] = [ + 'headers' => data_get($protocol_settings, 'network_settings.header.request.headers'), + 'path' => \Arr::random(data_get($protocol_settings, 'network_settings.header.request.path', ['/'])) + ]; + } break; case 'ws': $array['network'] = 'ws'; diff --git a/app/Protocols/ClashMeta.php b/app/Protocols/ClashMeta.php index 8153880..941a031 100644 --- a/app/Protocols/ClashMeta.php +++ b/app/Protocols/ClashMeta.php @@ -158,10 +158,12 @@ class ClashMeta implements ProtocolInterface switch (data_get($protocol_settings, 'network')) { case 'tcp': $array['network'] = data_get($protocol_settings, 'network_settings.header.type', 'tcp'); - $array['http-opts'] = [ - 'headers' => data_get($protocol_settings, 'network_settings.header.request.headers'), - 'path' => \Arr::random(data_get($protocol_settings, 'network_settings.header.request.path', ['/']), 1) - ]; + if (data_get($protocol_settings, 'network_settings.header.type', 'none') !== 'none') { + $array['http-opts'] = [ + 'headers' => data_get($protocol_settings, 'network_settings.header.request.headers'), + 'path' => \Arr::random(data_get($protocol_settings, 'network_settings.header.request.path', ['/'])) + ]; + } break; case 'ws': $array['network'] = 'ws';