Remove spammy messages
This commit is contained in:
parent
a70dbf0043
commit
82229db789
1 changed files with 4 additions and 0 deletions
|
@ -587,6 +587,7 @@ export class Changes {
|
|||
if (matchFound) {
|
||||
toUpload.push(c)
|
||||
} else {
|
||||
console.log("Refusing change about "+c.type+"/"+ c.id+" as not in the objects. No internet?")
|
||||
refused.push(c)
|
||||
}
|
||||
})
|
||||
|
@ -708,6 +709,9 @@ export class Changes {
|
|||
|
||||
let { toUpload, refused } = this.fragmentChanges(pending, objects)
|
||||
|
||||
if(toUpload.length === 0){
|
||||
return refused
|
||||
}
|
||||
await this._changesetHandler.UploadChangeset(
|
||||
(csId, remappings) => {
|
||||
if (remappings.size > 0) {
|
||||
|
|
Loading…
Reference in a new issue