Skip to content

Commit

Permalink
fix lengh typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Oct 29, 2023
1 parent 54a7cf8 commit c3d6f62
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions AllNeededDirectories/bicycle-osm-app/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ async function handleChangesets(route){
if(answers.length!=0){
console.log(answers)
const notSent = await UpdateOrImport(route, answers);
if(notSent.lengh != 0){
console.log("NOT SENT")
if(notSent.length != 0){
const data = HandleNotSentData(notSent)
//console.log(data.toUpdate);
await SendWithMyAccount(route, data.sendWithMyAccount)
Expand Down

0 comments on commit c3d6f62

Please sign in to comment.