Modify another regex where quotes may not always be present.

fork
Alex Drummond 13 years ago
parent c1a8fedebd
commit 164afe0bc4

@ -331,7 +331,7 @@ ImapConnection.prototype.connect = function(loginCb) {
case 'LIST':
var result;
if (self.delim === null
&& (result = /^\(\\No[sS]elect\) (.+?) ".*"$/.exec(data[2])))
&& (result = /^\(\\No[sS]elect\) (.+?) .*$/.exec(data[2])))
self.delim = (result[1] === 'NIL'
? false : result[1].substring(1, result[1].length-1));
else if (self.delim !== null) {

Loading…
Cancel
Save