Hello all, I have an issue with using crowdin OTA featue where releasing new changes don’t update until I manually change the timestamp in the url that fetches translation json
- what is the correct way to use timestamp query param to get the latest translation release in the APP? I’ve tried using new Date().getTime() but it doesn’t seem to work
for info: I’m using i18next-http-backend
plugin for i18next
const backendOptions: HttpBackendOptions = {
loadPath: `https://distributions.crowdin.net/${hash}/content/{{lng}}/app-content.json?timestamp=${new Date().getTime()}`
};