This commit is contained in:
parhelia512 2025-09-17 01:18:07 +08:00 committed by GitHub
parent b85aab3f0b
commit e3301cd063
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -615,10 +615,13 @@ namespace Subscription {
} }
} }
auto paths = tcp_http["path"]; auto paths = tcp_http["path"];
for (auto path: paths) { if (paths.is_string())
bean->stream->path = Node2QString(path); bean->stream->path = Node2QString(paths);
break; else if (paths.is_sequence())
} for (auto path: paths) {
bean->stream->path = Node2QString(path);
break;
}
} }
} else if (type == "anytls") { } else if (type == "anytls") {
needFix = true; needFix = true;