Skip to content

Commit

Permalink
added comma after source
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyhalight committed Aug 25, 2024
1 parent 51db09c commit a614375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1700,7 +1700,7 @@ class VideoHandler {
s.translatedFromLanguage.toUpperCase()
}`
: "") +
(s.source !== "yandex" ? ` ${s.source}` : "") +
(s.source !== "yandex" ? `, ${s.source}` : "") +
(s.isAutoGenerated
? ` (${localizationProvider.get("VOTAutogenerated")})`
: ""),
Expand Down

1 comment on commit a614375

@ilyhalight
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

before source*

Please sign in to comment.