We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5fa8ca3 + f4a5152 commit 99d99adCopy full SHA for 99d99ad
lib/contributors.js
@@ -6,10 +6,10 @@ const ElasticQueryBrowseBuilder = require('./elasticsearch/elastic-query-browse-
6
const BROWSE_INDEX = process.env.BROWSE_INDEX
7
8
const parseNameAndRole = (delimitedString) => {
9
- if (!delimitedString.includes('|')) {
+ if (!delimitedString.includes('||')) {
10
return { name: delimitedString, role: null }
11
}
12
- const [name, role] = delimitedString.split('|')
+ const [name, role] = delimitedString.split('||')
13
return { name, role }
14
15
0 commit comments