This commit is contained in:
Julian Lam
2014-08-13 16:03:33 -04:00
parent 0847eb2c3d
commit b48571ceb8

View File

@@ -41,7 +41,7 @@ function routeThemeScreenshots(app, themes) {
(function(id, path) {
fs.exists(path, function(exists) {
if (exists) {
app.get('/css/previews/' + id, function(req, res) {
app.get(relativePath + '/css/previews/' + id, function(req, res) {
res.sendfile(path);
});
}