Skip to content

Commit b4500d2

Browse files
committed
Fix default podModulePrefix in search indexing
1 parent 75bd652 commit b4500d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/broccoli/search-indexer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = class SearchIndexCompiler extends Writer {
5757

5858
// This will need to change for module unification...
5959
let modulePrefix = this.config.modulePrefix;
60-
let podModulePrefix = this.config.podModulePrefix;
60+
let podModulePrefix = this.config.podModulePrefix || modulePrefix;
6161

6262
let routePath;
6363
if (relativePath.indexOf(podModulePrefix) === 0 && POD_TEMPLATE_REGEX.test(relativePath)) {

0 commit comments

Comments
 (0)