From 2076713daf0bc6794d1567d110b5fa481b0b8a6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Sun, 15 Nov 2020 16:05:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=B8=8A=E6=8A=A5=E7=9A=84?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E4=B8=8Eugc=E6=8F=90=E7=A4=BA=E4=B8=8D?= =?UTF-8?q?=E4=B8=80=E8=87=B4bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/mogo/module/v2x/adapter/holder/V2XEventUgcVH.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/adapter/holder/V2XEventUgcVH.java b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/adapter/holder/V2XEventUgcVH.java index 695ac276f9..f842e7604a 100644 --- a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/adapter/holder/V2XEventUgcVH.java +++ b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/adapter/holder/V2XEventUgcVH.java @@ -139,11 +139,11 @@ public class V2XEventUgcVH extends V2XBaseViewHolder { // 上报事故 TanluUploadParams params = new TanluUploadParams( - mV2XRoadEventEntity.getPoiType(), + mNoveltyInfo.getPoiType(), IMogoTanluProvider.UPLOAD_FROM_STRATEGY_UGC, - mV2XRoadEventEntity.getNoveltyInfo().getInfoIdInt(), - new MogoLatLng(mV2XRoadEventEntity.getLocation().getLat(), - mV2XRoadEventEntity.getLocation().getLon()) + mNoveltyInfo.getInfoIdInt(), + new MogoLatLng(mNoveltyInfo.getLocation().getLat(), + mNoveltyInfo.getLocation().getLon()) ); V2XServiceManager.getTanluManager().uploadRoadCondition(params);