Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into refactor/bump-quasa…
Browse files Browse the repository at this point in the history
…r-app-vite
  • Loading branch information
mtdvlpr committed Dec 6, 2024
2 parents 651f3fe + 9a94466 commit 5fbee88
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/helpers/jw-media.ts
Original file line number Diff line number Diff line change
Expand Up @@ -593,10 +593,8 @@ const getStudyBible = async () => {
const currentStateStore = useCurrentStateStore();
const languages = [
...new Set([

currentStateStore.currentSettings?.lang,
currentStateStore.currentSettings?.langFallback,

]),
].filter((l): l is JwLangCode => !!l);
let nwtStyDb: null | string = null;
Expand Down Expand Up @@ -1008,10 +1006,8 @@ export const getAudioBibleMedia = async (force = false) => {
};
const languages = [
...new Set([

currentStateStore.currentSettings.lang,
currentStateStore.currentSettings?.langFallback,

]),
].filter((l): l is JwLangCode => !!l);

Expand Down Expand Up @@ -1755,7 +1751,7 @@ export async function processMissingMediaInfo(allMedia: MultimediaItem[]) {
!currentStateStore.currentSettings?.langFallback &&
currentStateStore.currentSettings?.lang,
currentStateStore.currentSettings?.langFallback,
/* eslint-enable perfectionist/sort-sets */
]),
];
for (const langwritten of langsWritten) {
Expand Down

0 comments on commit 5fbee88

Please sign in to comment.