From e4a0a4ebfae0ce18593d1c3bb0d2bf22ceecfc7b Mon Sep 17 00:00:00 2001 From: luoyang Date: Fri, 28 Feb 2020 19:28:16 +0800 Subject: [PATCH] fix app boolean int --- pom.xml | 2 +- .../activities/app_index/core/impls/AppActServiceImp.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 922716036..4d83957a0 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 manage - 1.3.74 + 1.3.75 UTF-8 1.8.0 diff --git a/src/main/java/au/com/royalpay/payment/manage/activities/app_index/core/impls/AppActServiceImp.java b/src/main/java/au/com/royalpay/payment/manage/activities/app_index/core/impls/AppActServiceImp.java index 3c75e180f..5bd61fb08 100644 --- a/src/main/java/au/com/royalpay/payment/manage/activities/app_index/core/impls/AppActServiceImp.java +++ b/src/main/java/au/com/royalpay/payment/manage/activities/app_index/core/impls/AppActServiceImp.java @@ -71,7 +71,7 @@ public class AppActServiceImp implements AppActService { public JSONObject getAppActPopup(){ JSONObject appActPopup = actAppMapper.getAppActPopup(); if (appActPopup == null) { - return new JSONObject(); + return null; } int appLinkType = appActPopup.getIntValue("show_type"); switch (appLinkType) {