Skip to content

Commit

Permalink
Merge pull request #303 from virtualidentityag/feat/add-referer-OB-4578
Browse files Browse the repository at this point in the history
fix: decode ref parameter
  • Loading branch information
RunzelRosinchen authored Aug 10, 2023
2 parents 187a5f4 + 355b9b0 commit 0df6aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Statistic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const Statistic = () => {
csvLine.push(entry.mainTopicInternalAttribute || '');
csvLine.push(entry.postalCode);
csvLine.push(entry.endDate);
csvLine.push(entry.referer || '');
csvLine.push(entry.referer ? decodeURI(entry.referer) : '');

data.push(csvLine);
});
Expand Down

0 comments on commit 0df6aff

Please sign in to comment.