From 4ca31fd2cf393f51300fa25b8555458cd9ecebf2 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 5 Mar 2018 09:03:54 +0900 Subject: Fix bug --- src/web/app/mobile/views/components/post-form.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/web/app/mobile') diff --git a/src/web/app/mobile/views/components/post-form.vue b/src/web/app/mobile/views/components/post-form.vue index 559a6c1c4b..35e581f317 100644 --- a/src/web/app/mobile/views/components/post-form.vue +++ b/src/web/app/mobile/views/components/post-form.vue @@ -113,7 +113,15 @@ export default Vue.extend({ media_ids: this.files.length > 0 ? this.files.map(f => f.id) : undefined, reply_id: this.reply ? this.reply.id : undefined, poll: this.poll ? (this.$refs.poll as any).get() : undefined, - geo: this.geo, + geo: this.geo ? { + latitude: this.geo.latitude, + longitude: this.geo.longitude, + altitude: this.geo.altitude, + accuracy: this.geo.accuracy, + altitudeAccuracy: this.geo.altitudeAccuracy, + heading: isNaN(this.geo.heading) ? null : this.geo.heading, + speed: this.geo.speed, + } : null, via_mobile: viaMobile }).then(data => { this.$emit('post'); -- cgit v1.2.3-freya