taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit d3e65709f8318d9bb4f2341342d00795aecec08c
parent 5d46295d1c23d022af1b3d4375860948f5b16c0a
Author: Iván Ávalos <avalos@disroot.org>
Date:   Thu, 29 Jan 2026 18:48:24 +0100

taler-util: do not compact http performance stats

Diffstat:
Mpackages/taler-util/src/performance.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-util/src/performance.ts b/packages/taler-util/src/performance.ts @@ -118,7 +118,7 @@ export namespace PerformanceStat { export function equals(a: PerformanceStat, b: PerformanceStat): boolean { if (a.type !== b.type) return false; if (a.type === PerformanceStatType.HttpFetch) { - return a.url === b["url" as keyof typeof b]; + return false; } else if (a.type === PerformanceStatType.DbQuery) { return ( a.name === b["name" as keyof typeof b] &&