Skip to content

Commit

Permalink
Fix download URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvNC committed Jul 24, 2024
1 parent f3db839 commit 4c3e507
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/convertToHonziDictionary.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { isSingleCJKHanzi } from 'is-cjk-hanzi';
`https://github.com/MarvNC/wordshk-yomitan/releases/latest/download${HONZI_INDEX_FILE}`
)
.setDownloadUrl(
`https://github.com/MarvNC/wordshk-yomitan/releases/${tagName}/download/${honziDictionaryFilename}`
`https://github.com/MarvNC/wordshk-yomitan/releases/download/${tagName}/${honziDictionaryFilename}`
);
await dictionary.setIndex(dictionaryIndex.build());

Expand Down
2 changes: 1 addition & 1 deletion src/convertToTermDictionary.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import { readAndParseCSVs } from './util/readAndParseCSVs.js';
`https://github.com/MarvNC/wordshk-yomitan/releases/latest/download/${TERM_INDEX_FILE}`
)
.setDownloadUrl(
`https://github.com/MarvNC/wordshk-yomitan/releases/${tagName}/download/${termDictionaryFileName}`
`https://github.com/MarvNC/wordshk-yomitan/releases/download/${tagName}/${termDictionaryFileName}`
);
await dictionary.setIndex(dictionaryIndex.build());

Expand Down

0 comments on commit 4c3e507

Please sign in to comment.