api/stream/manage: fix usage of getInternalTunnel()

fixed a typo
This commit is contained in:
wukko
2025-05-29 20:20:56 +06:00
parent 71bb2de81a
commit 5e3d6107f9

View File

@ -180,7 +180,7 @@ const transplantInternalTunnels = function(tunnelUrls, transplantUrls) {
for (const [ tun, url ] of zip(tunnelUrls, transplantUrls)) {
const id = getInternalTunnelId(tun);
const itunnel = getInternalStream(id);
const itunnel = getInternalTunnel(id);
if (!itunnel) continue;
itunnel.url = url;