diff --git a/lib/shared/provider/mangafox/series.js b/lib/shared/provider/mangafox/series.js index d597b1c..e4e4ad6 100644 --- a/lib/shared/provider/mangafox/series.js +++ b/lib/shared/provider/mangafox/series.js @@ -92,6 +92,7 @@ Series.prototype.summary = function($) { !/^\(Source:\s+(.+)\)/i.test(piece); }).every(function(piece) { if (!piece.trim() && result) return false; + if (result && !/\s$/.test(result)) result += ' '; result += piece.trim(); return true; }); diff --git a/package.json b/package.json index 82e9838..915a1ab 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ ], "name": "mangarack", "repository": "git://github.com/Deathspike/mangarack.js.git", - "version": "3.1.0", + "version": "3.1.1", "bin": { "mangarack": "./bin/mangarack" },