Skip to content

Commit

Permalink
fixed missing spaces after commas in plot
Browse files Browse the repository at this point in the history
  • Loading branch information
Superschnizel committed Nov 29, 2023
1 parent 0829b9b commit 80c36ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ export default class Moviegrabber extends Plugin {
result += suffix;

for (let i = 1; i < items.length; i++) {
result += ',';
result += ', ';
result += prefix;
result += items[i]; // data
result += suffix;
Expand Down

0 comments on commit 80c36ce

Please sign in to comment.