Skip to content

Commit b4fd29c

Browse files
committed
Fix add translation to json
1 parent c807a0e commit b4fd29c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_validate/createJson.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _createDataclassMatchingJsonSchema(
125125
translations: list[dict[str, str]] = []
126126
for langCode, translatedManifest in getAddonManifestLocalizations(manifest):
127127
# Add optional translated changelog.
128-
translatedChangelog: str | None = parseConfigValue(manifest, "changelog")
128+
translatedChangelog: str | None = parseConfigValue(translatedManifest, "changelog")
129129

130130
try:
131131
translation: dict[str, str] = {

0 commit comments

Comments
 (0)