We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1995051 commit 332f462Copy full SHA for 332f462
codec2talkie/src/main/java/com/radio/codec2talkie/protocol/aprs/AprsDataTextMessage.java
@@ -79,7 +79,7 @@ public boolean isValid() {
79
}
80
81
private boolean isTelemetry(String textMessage) {
82
- Pattern p = Pattern.compile("^(EQNS|PARM|UNIT|BITS)[.].+$");
+ Pattern p = Pattern.compile("^(EQNS|PARM|UNIT|BITS)[.].+$", Pattern.DOTALL);
83
Matcher m = p.matcher(textMessage);
84
return m.matches();
85
0 commit comments