mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-21 14:47:41 +01:00
Merge branch 'dev' of https://github.com/ashudevcodes/movie-web into dev
This commit is contained in:
commit
897d856ba5
1 changed files with 4 additions and 1 deletions
|
@ -14,7 +14,10 @@ export function useRandomTranslation() {
|
|||
const defaultTitle = t(`${key}.default`) ?? "";
|
||||
if (!shouldJoke) return defaultTitle;
|
||||
|
||||
const keys = t(`${key}.extra`, { returnObjects: true });
|
||||
const keys = t(`${key}.extra`, {
|
||||
returnObjects: true,
|
||||
defaultValue: defaultTitle,
|
||||
});
|
||||
if (Array.isArray(keys)) {
|
||||
if (keys.length === 0) return defaultTitle;
|
||||
return keys[Math.floor(seed * keys.length)];
|
||||
|
|
Loading…
Reference in a new issue