diff --git a/src/components/pooRecorder/pooRecorder.go b/src/components/pooRecorder/pooRecorder.go index e39b0c3..7add70d 100644 --- a/src/components/pooRecorder/pooRecorder.go +++ b/src/components/pooRecorder/pooRecorder.go @@ -310,8 +310,9 @@ func syncDbToNotion(headerId string, tableId string, rowsNotion []notionapi.Tabl dbTimeDate, dbTimeTime, rowsDbSlice[iDb].Status, - fmt.Sprintf("%f,%f", - rowsDbSlice[iDb].Latitude, rowsDbSlice[iDb].Longitude)}, + fmt.Sprintf("%s,%s", + strconv.FormatFloat(rowsDbSlice[iDb].Latitude, 'f', -1, 64), + strconv.FormatFloat(rowsDbSlice[iDb].Longitude, 'f', -1, 64))}, tableId, startFromId) if err != nil {