Notification with snapshot, not working anymore

Hi all, I have being using this service for months but now I’m having issues.
Running full HA on proxmox and using the generic camera integration for the ip webcam

In summary, I just take a snapshot and then attached it to a notification to mobile device. To troubleshoot this, I separate the steps

  1. Snapshot, the file is created correctly in the folder /config/www/images
service: camera.snapshot
data:
  filename: /config/www/images/movimiento.jpg
target:
  entity_id: camera.teo_low
  1. When I use the same location of the snapshot I just receive the text, not the image
service: notify.mobile_app_s22
data:
  message: Movimieto
  data: {image: /config/www/images/movimiento.jpg}
  1. If I change the location of the snapshot, replacing /config/www/ with /local, I received a cached version from 3 hours ago? I checked everywhere but cant find that image that is send
service: notify.mobile_app_s22
data:
  message: Movimieto
  data: {image: /local/images/movimiento.jpg}

I’m not sure what what is wrong, should be something regarding the folder location of the snapshot. Its like the snapshot service can write but the notification service cant read?

I also try using the public url https://xxxxxx.com/local/images/movimiento.jpg but the image is the same every time. I delete all the images in the system and the image is still the same. Could be something regarding cache?

Thanks for any kind of guidance

I have the exact same issue. I recieve cached images on my phone. I can see that the image on HASS is updated correctly, but when the notification fires on my android device, its an old cached image.

I think i found a solution
I stop using the /config/www folder

For the snapshot service, the path is /media/images/picture.jpg
Then for the notification, the path is /media/local/images/picture.jpg

This combination is working for me right now

Hope this help you

I am using RPI4 so I dont have the option to go back from config - I will have to find another solution.
Thank you for the reply though.