fix: always sort external URLs down

This commit is contained in:
WebStreamr 2025-06-05 19:59:20 +00:00
parent 04ee59e9d3
commit 8e57400c58
No known key found for this signature in database

View file

@ -74,6 +74,10 @@ export class StreamResolver {
return bytesComparison;
}
if (a.isExternal || b.isExternal) {
return a.isExternal ? 1 : -1;
}
return a.label.localeCompare(b.label);
});