"Custom Bundle Generator" build error

Hello,
I’m using crowdin/cli in my Vue 3 project. For website internationalization, we’re using vue-i18n, which has a specific format for handling plurals. To make everything work correctly, we’re using a Custom Bundle Generator with the following code.

It was working fine until recently, but now we’re encountering an error when trying to download the bundle.
Could you please help us resolve this issue?

P.S. The “Save code” button in the popup is not visible :frowning:

let result = {};

strings.map(s => {
    if (s.hasPlurals) {
        result[s.identifier] = Object.values(s.translations[languageId].text).join(' | ');
    } else {
        result[s.identifier] = s.translations[languageId].text;
    }
});

content = JSON.stringify(result);

Hi @UGL !

Thank you for reaching us! Can you please let us know if you have recently applied some changes from your side to the project settings? Please let us know the name and id of the bundle.

Thanks in advance!

ID: 781144. Today i tried again and now it’s working. Yesterday i added new string (key: legal_jibber_jabber)

Hello @UGL! I have checked the project logs, and it looks like there were some issues from yesterday.

Please let us know if the behavior reoccurs, so we cold investigate it from our side.