mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
Fix bug
This commit is contained in:
parent
eddbce19f8
commit
4ca31fd2cf
@ -219,7 +219,15 @@ export default Vue.extend({
|
||||
reply_id: this.reply ? this.reply.id : undefined,
|
||||
repost_id: this.repost ? this.repost.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
|
||||
}).then(data => {
|
||||
this.clear();
|
||||
this.deleteDraft();
|
||||
|
@ -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');
|
||||
|
Loading…
Reference in New Issue
Block a user