1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +00:00

🐛 Fix ConditionLocations failing comparisions

This commit is contained in:
Steffo 2021-05-25 15:59:09 +02:00
parent c61f764c16
commit a9ae5fbcee
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -40,7 +40,7 @@ export default class Coordinates {
* @returns {string} * @returns {string}
*/ */
toString() { toString() {
return `${this.lat.toFixed(7)} ${this.lng.toFixed(7)}` return `${this.lat} ${this.lng}`
} }
/** /**