From 12ac42ef5f67c20be2fedfb0dea9183504529663 Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Wed, 3 Sep 2025 11:05:16 +0000 Subject: [PATCH] chore: no special sorting for errors --- src/utils/StreamResolver.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/utils/StreamResolver.ts b/src/utils/StreamResolver.ts index 75797c7..7e0104d 100644 --- a/src/utils/StreamResolver.ts +++ b/src/utils/StreamResolver.ts @@ -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; }