Fix checking columns if route is not specified

This commit is contained in:
Patrick Niklaus 2017-04-19 15:09:17 +00:00 committed by Patrick Niklaus
parent 9974b8b1da
commit 5c4f96e4bc

View File

@ -79,6 +79,7 @@ module.exports = function () {
if (headers.has('route')) {
got.route = (instructions || '').trim();
}
if (headers.has('summary')) {
got.summary = (summary || '').trim();
@ -173,7 +174,6 @@ module.exports = function () {
putValue('weight_name', weight_name);
putValue('weights', weights);
putValue('weight', weight);
}
for (var key in row) {
if (this.FuzzyMatch.match(got[key], row[key])) {