Skip to content

Commit

Permalink
fix: unescaped dynamic source url (#135)
Browse files Browse the repository at this point in the history
Fixes #131.
  • Loading branch information
shouya authored Jul 20, 2024
1 parent 4feeab9 commit b6ba64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inspector/src/FeedInspector.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ export class FeedInspector {

const params = [];
if (!this.current_endpoint.source && source)
params.push(`source=${source}`);
params.push(`source=${encodeURIComponent(source)}`);
if (limit_posts) params.push(`limit_posts=${limit_posts}`);
if (limit_filters) params.push(`limit_filters=${limit_filters}`);

Expand Down

0 comments on commit b6ba64c

Please sign in to comment.