From 79314e1747ee74544975948ba35fb499c203a061 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 13 Dec 2024 14:45:42 +0100 Subject: [PATCH] Fix: don't report an unneeded error --- src/Logic/Osm/Changes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Logic/Osm/Changes.ts b/src/Logic/Osm/Changes.ts index 69fd53f85..d33c395f9 100644 --- a/src/Logic/Osm/Changes.ts +++ b/src/Logic/Osm/Changes.ts @@ -600,7 +600,7 @@ export class Changes { " trying again before dropping it from the changes (" + e + ")" - this._reportError(msg) + // this._reportError(msg) // We don't report this yet, might be a temporary fluke const osmObj = await downloader.DownloadObjectAsync(id, 0) return { id, osmObj } }