Skip to content

Commit

Permalink
fix(moduls: channelconfig): make sure a string isn't split by charact…
Browse files Browse the repository at this point in the history
…er onto array
  • Loading branch information
dsevillamartin committed Jul 11, 2018
1 parent a5a9fa4 commit 4a86d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Models/ChannelConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ChannelConfigItem {
}
}

this.repos = [...this.repos];
this.repos = [].concat(this.repos);
}
/**
* Set a specific config property to a value for this config item
Expand Down

0 comments on commit 4a86d74

Please sign in to comment.