Loading image from Assets via script doesn't work after build

So I have this VR app with a canvas in the world.

I have a raw image inside the canvas and when activated I load a picture from Streaming Assets, this works great in the engine but when I build it and run it in Oculus 2, the pictures just wont load, like nothing is happening.

I have a similar code for some text and this works great.

Here’s my code on how I load the image.

    public void ImagesButton()
    {
        try
        {
            string pathToPictures = Application.streamingAssetsPath + "/" + GetName() + "/Pictures/";
            imagesFiles = Directory.GetFiles(pathToPictures, "*.jpg", SearchOption.AllDirectories);
            IEnumerator coroutine = LoadImageIE(imagesFiles[0]);
            StartCoroutine(coroutine);
        }
        catch
        {
            Debug.Log("no images folder");
        }
       
        currentImage = 0; //reset flag
    }
    private IEnumerator LoadImageIE(string imagePath)
    {
        UnityWebRequest request = UnityWebRequestTexture.GetTexture(imagePath);

        yield return request.SendWebRequest();

        try
        {
            canvasForDisplays.transform.GetChild(2).gameObject.transform.GetChild(0).gameObject.GetComponent<RawImage>().texture = DownloadHandlerTexture.GetContent(request);
             canvasForDisplays.transform.GetChild(2).gameObject.SetActive(true);
        }
        catch
        {
            Debug.Log("no image file");
        }
    }

In the image are the settings of the canvas and the raw image object.

Can you post a log of the failure?

I am not sure on how to run it on debug mode on oculus to get a log

The beginning of another year is generally a reason for festivity. Individuals all around the world participate in celebrations to stamp the event. One of the most famous ways of celebrating is by sharing Blissful New Year pictures with loved ones.**happy new year gifts **On the off chance that you’re searching for some Cheerful New Year 2023 pictures to share, we take care of you. We’ve assembled an assortment of the best Blissful New Year 2023 photographs from around the web. So whether you’re searching for something bubbly or essentially need to share some seasonal joy, make certain to look at our assortment of Cheerful New Year pictures.

So I moved the pictures out of “Pictures” folder and it works, no idea why…