|
@@ -567,7 +567,7 @@ public class CpPushDataServiceImpl implements ICpPushDataService {
|
|
|
|
|
|
String channel = new String(Base64.getDecoder().decode(userData.getChannel()));
|
|
|
|
|
|
- if (!channel.contains("agentKey") || !channel.contains("state")) {
|
|
|
+ if (!channel.contains("agentKey") && !channel.contains("state")) {
|
|
|
return Tuples.of(0L, Collections.emptyMap(), channel);
|
|
|
}
|
|
|
Tuple2<Boolean, Boolean> jsonAndEmpty = this.isJsonAndEmpty(channel);
|