We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e95ba64 + c99fc46 commit f5445a0Copy full SHA for f5445a0
modules/cpr/src/main/java/org/atmosphere/cpr/AtmosphereFramework.java
@@ -1139,7 +1139,8 @@ protected void analytics() {
1139
boolean nextAvailable = false;
1140
if (!newVersion.contains("SNAPSHOT")) {
1141
try {
1142
- while ((inputLine = in.readLine().trim()) != null) {
+ while ((inputLine = in.readLine()) != null) {
1143
+ inputLine = inputLine.trim();
1144
if (inputLine.startsWith("ATMO23_VERSION=")) {
1145
newVersion = inputLine.substring("ATMO23_VERSION=".length());
1146
} else if (inputLine.startsWith("CLIENT3_VERSION=")) {
0 commit comments