Fix bug
This commit is contained in:
		
							parent
							
								
									eddbce19f8
								
							
						
					
					
						commit
						4ca31fd2cf
					
				
					 2 changed files with 18 additions and 2 deletions
				
			
		| 
						 | 
					@ -219,7 +219,15 @@ export default Vue.extend({
 | 
				
			||||||
				reply_id: this.reply ? this.reply.id : undefined,
 | 
									reply_id: this.reply ? this.reply.id : undefined,
 | 
				
			||||||
				repost_id: this.repost ? this.repost.id : undefined,
 | 
									repost_id: this.repost ? this.repost.id : undefined,
 | 
				
			||||||
				poll: this.poll ? (this.$refs.poll as any).get() : 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 => {
 | 
								}).then(data => {
 | 
				
			||||||
				this.clear();
 | 
									this.clear();
 | 
				
			||||||
				this.deleteDraft();
 | 
									this.deleteDraft();
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -113,7 +113,15 @@ export default Vue.extend({
 | 
				
			||||||
				media_ids: this.files.length > 0 ? this.files.map(f => f.id) : undefined,
 | 
									media_ids: this.files.length > 0 ? this.files.map(f => f.id) : undefined,
 | 
				
			||||||
				reply_id: this.reply ? this.reply.id : undefined,
 | 
									reply_id: this.reply ? this.reply.id : undefined,
 | 
				
			||||||
				poll: this.poll ? (this.$refs.poll as any).get() : 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
 | 
									via_mobile: viaMobile
 | 
				
			||||||
			}).then(data => {
 | 
								}).then(data => {
 | 
				
			||||||
				this.$emit('post');
 | 
									this.$emit('post');
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue