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 a8cf433 commit 9b4125cCopy full SHA for 9b4125c
lib/build.gradle
@@ -29,7 +29,7 @@ android {
29
30
defaultConfig {
31
minSdkVersion 16
32
- targetSdkVersion 25
+ targetSdkVersion 26
33
versionCode 1
34
versionName "1.0"
35
}
@@ -73,4 +73,4 @@ task sourcesJar(type: Jar) {
73
74
artifacts {
75
archives sourcesJar
76
-}
+}
lib/src/main/java/ua/naiksoftware/stomp/dto/StompMessage.java
@@ -17,7 +17,7 @@ public class StompMessage {
17
18
public static final String TERMINATE_MESSAGE_SYMBOL = "\u0000";
19
20
- private static final Pattern PATTERN_HEADER = Pattern.compile("([^:\\s]+)\\s*:\\s*([^:\\s]+)");
+ private static final Pattern PATTERN_HEADER = Pattern.compile("([^:\\s]+)\\s*:\\s*([^\\n]+)");
21
22
private final String mStompCommand;
23
private final List<StompHeader> mStompHeaders;
0 commit comments