mirror of https://github.com/calzoneman/sync.git
Fix regular expression for google docs parsing
This commit is contained in:
parent
f11be6ae81
commit
4f7ec228d3
|
@ -703,7 +703,11 @@ var Getters = {
|
||||||
return callback("HTTP " + status, null);
|
return callback("HTTP " + status, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
var m = res.match(/(\[\s*\[[^\[].*?\]\s*\])/);
|
/*
|
||||||
|
* Match [[anything]] and ignore whitespace
|
||||||
|
* Fix 2014-08-07: [^] matches \r\n, . doesn't.
|
||||||
|
*/
|
||||||
|
var m = res.match(/(\[\s*\[[^\[][^]*?\]\s*\])/);
|
||||||
try {
|
try {
|
||||||
var propertyList = JSON.parse(m[1]);
|
var propertyList = JSON.parse(m[1]);
|
||||||
var data = {};
|
var data = {};
|
||||||
|
|
Loading…
Reference in New Issue