Skip to content

Commit

Permalink
Merge pull request #1 from SimonRice/namespace-filter-list-crs
Browse files Browse the repository at this point in the history
Namespace CRS element when used in Filter List
  • Loading branch information
magnatronus authored Apr 14, 2020
2 parents 7b6b805 + b638467 commit 52342e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soap/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class DepartureBoardSoap {
let val="";
if(key == "filterList"){
options[key].forEach((crs) => {
val += `<crs>${crs}</crs>`;
val += `<ldb:crs>${crs}</ldb:crs>`;
});
} else {
val = `${options[key]}`
Expand Down

0 comments on commit 52342e4

Please sign in to comment.