@apocaliss92/nodelink-js 0.6.3 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-Q4AXRV2G.js → chunk-UL34MR4L.js} +3 -2
- package/dist/chunk-UL34MR4L.js.map +1 -0
- package/dist/cli/rtsp-server.cjs +2 -1
- package/dist/cli/rtsp-server.cjs.map +1 -1
- package/dist/cli/rtsp-server.js +1 -1
- package/dist/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-Q4AXRV2G.js.map +0 -1
|
@@ -689,6 +689,7 @@ function readCache(uid, now) {
|
|
|
689
689
|
}
|
|
690
690
|
async function getServerBinding(uid, options = {}) {
|
|
691
691
|
if (!uid || typeof uid !== "string") return void 0;
|
|
692
|
+
uid = uid.toUpperCase();
|
|
692
693
|
const now = Date.now();
|
|
693
694
|
const cached = readCache(uid, now);
|
|
694
695
|
if (cached?.kind === "ok") return cached.response;
|
|
@@ -24704,7 +24705,7 @@ function selectViableUdpMethods(hasUid, methods = ALL_UDP_DISCOVERY_METHODS) {
|
|
|
24704
24705
|
return methods.filter((m) => m === "local-direct");
|
|
24705
24706
|
}
|
|
24706
24707
|
function normalizeUid(uid) {
|
|
24707
|
-
const v = uid?.trim();
|
|
24708
|
+
const v = uid?.trim().toUpperCase();
|
|
24708
24709
|
return v ? v : void 0;
|
|
24709
24710
|
}
|
|
24710
24711
|
function maskUid(uid) {
|
|
@@ -25496,4 +25497,4 @@ export {
|
|
|
25496
25497
|
tcpReachabilityProbe,
|
|
25497
25498
|
autoDetectDeviceType
|
|
25498
25499
|
};
|
|
25499
|
-
//# sourceMappingURL=chunk-
|
|
25500
|
+
//# sourceMappingURL=chunk-UL34MR4L.js.map
|