chore: no special sorting for errors

This commit is contained in:
WebStreamr 2025-09-03 11:05:16 +00:00
parent 89790609db
commit 12ac42ef5f
No known key found for this signature in database

View file

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