mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-09 15:35:47 +01:00
fixing symbols in plugin static path filenames -- can I tag people in commit messages? @frissdiegurke
This commit is contained in:
@@ -34,7 +34,7 @@ var nconf = require('nconf'),
|
||||
var relPath = req._parsedUrl.pathname.replace(nconf.get('relative_path') + '/plugins/' + req.params.id, '');
|
||||
|
||||
if (plugins.staticDirs[req.params.id]) {
|
||||
var fullPath = path.join(plugins.staticDirs[req.params.id], relPath);
|
||||
var fullPath = path.join(plugins.staticDirs[req.params.id], decodeURIComponent(relPath));
|
||||
|
||||
fs.exists(fullPath, function(exists) {
|
||||
if (exists) {
|
||||
|
||||
Reference in New Issue
Block a user