Fix: don't report an unneeded error

This commit is contained in:
Pieter Vander Vennet 2024-12-13 14:45:42 +01:00
parent 3fb8f7342f
commit 79314e1747

View file

@ -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 }
}