forked from MapComplete/MapComplete
Fix: remove truly unrecoverable changes from report logging
This commit is contained in:
parent
6a4166febb
commit
f2b681caa5
1 changed files with 7 additions and 2 deletions
|
|
@ -72,7 +72,7 @@ export class Changes {
|
||||||
this.backend = state.osmConnection.Backend()
|
this.backend = state.osmConnection.Backend()
|
||||||
this._reportError = reportError
|
this._reportError = reportError
|
||||||
this._changesetHandler = new ChangesetHandler(
|
this._changesetHandler = new ChangesetHandler(
|
||||||
state.featureSwitches.featureSwitchIsTesting,
|
state.featureSwitches?.featureSwitchIsTesting ?? new ImmutableStore(false),
|
||||||
state.osmConnection,
|
state.osmConnection,
|
||||||
state.featureProperties,
|
state.featureProperties,
|
||||||
this,
|
this,
|
||||||
|
|
@ -837,7 +837,12 @@ export class Changes {
|
||||||
)
|
)
|
||||||
|
|
||||||
// We keep all the refused changes to try them again
|
// We keep all the refused changes to try them again
|
||||||
this.pendingChanges.setData(refusedChanges.flatMap((c) => c))
|
this.pendingChanges.setData(refusedChanges.flatMap((c) => c).filter(c => {
|
||||||
|
if(c.id === null || c.id === undefined){
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}))
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(
|
console.error(
|
||||||
"Could not handle changes - probably an old, pending changeset in localstorage with an invalid format; erasing those",
|
"Could not handle changes - probably an old, pending changeset in localstorage with an invalid format; erasing those",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue