The current nanoflow version (4.0.1) which has a base64 JavaScript action. Where the code for the base64 Javascript action is wrong. It is trying to encrypt the wrong value. Need to change the JS Action on both Base64 Encryption and Decryption.
hi @Joni, yeah i have changed the same and it worked.
Thanks,
Jeba
Hi, they seem to have already fixed it in the main line but not available yet in the marketplace, you could change it manually:
export async function Base64Decode(base64: string): Promise<string> {
// BEGIN USER CODE
return Base64.decode(base64);
// END USER CODE
}
Hi Jeba
I think you are mixing up some things:
If you're using something else, please elaborate on it. Also, if you're encountering specific errors during runtime, you can specify them here as well.
Extra edit: do use the forum for issues instead of 'ideas' for this one then. This is not exactly a new idea.