version upgrade to 1.7.2
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j</artifactId>
|
||||
<version>1.7.1</version>
|
||||
<version>1.7.2</version>
|
||||
</parent>
|
||||
<artifactId>weixin4j-base</artifactId>
|
||||
<name>weixin4j-base</name>
|
||||
|
||||
+2
-2
@@ -83,8 +83,8 @@ public class RedisCacheStorager<T extends Cacheable> implements
|
||||
byte[] cacheKey = key.getBytes(Consts.UTF_8);
|
||||
byte[] value = SerializationUtils.serialize(cache);
|
||||
if (cache.getExpires() > 0) {
|
||||
jedis.setex(cacheKey, (int) (cache.getExpires() - CUTMS) / 1000,
|
||||
value);
|
||||
jedis.setex(cacheKey,
|
||||
(int) (cache.getExpires() - CUTMS) / 1000, value);
|
||||
} else {
|
||||
jedis.set(cacheKey, value);
|
||||
}
|
||||
|
||||
@@ -856,5 +856,5 @@ public class WeixinPayProxy {
|
||||
return customsApi.queryCustomsOrder(idQuery, customsCity);
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.1";
|
||||
public final static String VERSION = "1.7.2";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user