about summary refs log tree commit diff stats
path: root/client/trunk/src/com/fourisland
diff options
context:
space:
mode:
Diffstat (limited to 'client/trunk/src/com/fourisland')
-rw-r--r--client/trunk/src/com/fourisland/instadisc/InstaDiscThread.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/trunk/src/com/fourisland/instadisc/InstaDiscThread.java b/client/trunk/src/com/fourisland/instadisc/InstaDiscThread.java index 8384502..5895c10 100644 --- a/client/trunk/src/com/fourisland/instadisc/InstaDiscThread.java +++ b/client/trunk/src/com/fourisland/instadisc/InstaDiscThread.java
@@ -94,7 +94,7 @@ class HandleItemThread implements Runnable {
94 try { 94 try {
95 String[] nameVal = headers[i].split(": "); 95 String[] nameVal = headers[i].split(": ");
96 String name = nameVal[0]; 96 String name = nameVal[0];
97 String value = nameVal[1].trim(); 97 String value = nameVal[1].trim().replace("__INSTADISC__", ": ");
98 headerMap.put(name, value); 98 headerMap.put(name, value);
99 } catch (Exception ex) { 99 } catch (Exception ex) {
100 break; 100 break;