From 48e2655bff8c3f41b5c722c4beaa99196ab3af46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Dahlgren?= Date: Mon, 10 Nov 2014 00:50:17 +0100 Subject: [PATCH] Check for synq metadata file to determine if mod was fetched from PWS --- routes/mods.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/mods.js b/routes/mods.js index 7e67117..7864df7 100644 --- a/routes/mods.js +++ b/routes/mods.js @@ -49,7 +49,7 @@ function walk (directory) { }; function isPlayWithSixMod(modPath, cb) { - var pwsFile = path.join(modPath, '.repository.yml'); + var pwsFile = path.join(modPath, '.synq.json'); fs.exists(pwsFile, function (exists) { if (cb) { cb(exists);