mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
Fixed bug where uid in response was truncated
The SAX parser returns chunks of text to the WebDavHandler. Other tags were correctly appending values while the special cased <uid> tag was simply assigned the value it was given, which would result in the last chunk assigned to it and not the whole string of text.
This commit is contained in:
parent
b89704900a
commit
be1be56e3a
@ -2060,12 +2060,12 @@ public class WebDavStore extends Store {
|
||||
public class DataSet {
|
||||
private HashMap<String, HashMap<String, String>> mData = new HashMap<String, HashMap<String, String>>();
|
||||
// private HashMap<String, String> mLostData = new HashMap<String, String>();
|
||||
private String mUid = "";
|
||||
private StringBuilder mUid = new StringBuilder();
|
||||
private HashMap<String, String> mTempData = new HashMap<String, String>();
|
||||
|
||||
public void addValue(String value, String tagName) {
|
||||
if (tagName.equals("uid")) {
|
||||
mUid = value;
|
||||
mUid.append(value);
|
||||
}
|
||||
|
||||
if (mTempData.containsKey(tagName)) {
|
||||
@ -2076,9 +2076,10 @@ public class WebDavStore extends Store {
|
||||
}
|
||||
|
||||
public void finish() {
|
||||
if (mUid != null &&
|
||||
String uid = mUid.toString();
|
||||
if (!uid.equals("") &&
|
||||
mTempData != null) {
|
||||
mData.put(mUid, mTempData);
|
||||
mData.put(uid, mTempData);
|
||||
} else if (mTempData != null) {
|
||||
/*
|
||||
* Lost Data are for requests that don't include a message UID. These requests should only have a depth
|
||||
@ -2086,7 +2087,7 @@ public class WebDavStore extends Store {
|
||||
*/
|
||||
}
|
||||
|
||||
mUid = "";
|
||||
mUid = new StringBuilder();
|
||||
mTempData = new HashMap<String, String>();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user