Merge branch 'develop' of github.com:ether/etherpad-lite into import-button-styling

This commit is contained in:
John McLear 2013-09-21 16:23:12 +01:00
commit 240a96221a
1 changed files with 7 additions and 1 deletions

View File

@ -31,7 +31,13 @@ function setPadHTML(pad, html, callback)
var padText = pad.text();
// Parse the incoming HTML with jsdom
var doc = jsdom(html.replace(/>\n+</g, '><'));
try{
var doc = jsdom(html.replace(/>\n+</g, '><'));
}catch(e){
apiLogger.warn("Error importing, possibly caused by malformed HTML");
var doc = jsdom("<html><body><div>Error during import, possibly malformed HTML</div></body></html>");
}
apiLogger.debug('html:');
apiLogger.debug(html);