mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 01:11:46 +08:00 
			
		
		
		
	update: server
This commit is contained in:
		| @@ -31,16 +31,16 @@ class AppController extends Controller | ||||
|  | ||||
|         foreach ($servers as $item) { | ||||
|             if ($item['type'] === 'shadowsocks') { | ||||
|                 array_push($proxy, Clash::buildShadowsocks($user->uuid, $item)); | ||||
|                 array_push($proxies, $item->name); | ||||
|                 array_push($proxy, Clash::buildShadowsocks($user['uuid'], $item)); | ||||
|                 array_push($proxies, $item['name']); | ||||
|             } | ||||
|             if ($item['type'] === 'v2ray') { | ||||
|                 array_push($proxy, Clash::buildVmess($user->uuid, $item)); | ||||
|                 array_push($proxies, $item->name); | ||||
|                 array_push($proxy, Clash::buildVmess($user['uuid'], $item)); | ||||
|                 array_push($proxies, $item['name']); | ||||
|             } | ||||
|             if ($item['type'] === 'trojan') { | ||||
|                 array_push($proxy, Clash::buildTrojan($user->uuid, $item)); | ||||
|                 array_push($proxies, $item->name); | ||||
|                 array_push($proxy, Clash::buildTrojan($user['uuid'], $item)); | ||||
|                 array_push($proxies, $item['name']); | ||||
|             } | ||||
|         } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user