homarr icon indicating copy to clipboard operation
homarr copied to clipboard

Custom favicon not display

Open fernandeusto opened this issue 1 year ago • 6 comments

Environment

Docker

Version

0.14.0

Describe the problem

image

the custom favicon is not loaded, and show default homarr icon

image

Logs

No response

Context

Windows 11 Edge

Please tick the boxes

  • [ ] I confirm that I attached the proper logs
  • [X] I've read the docs
  • [X] I've checked for duplicate issues
  • [X] I've tried to debug myself

fernandeusto avatar Nov 11 '23 22:11 fernandeusto

Thanks for the report! We’ll try to address this for the next patch ;)

ajnart avatar Nov 11 '23 22:11 ajnart

Now in 0.14.1, whem login session the favicon is correct, but if close browser and open again, then user session continious open but favicon back to default again

fernandeusto avatar Nov 16 '23 23:11 fernandeusto

This issue continues in 0.14.2

fernandeusto avatar Jan 03 '24 14:01 fernandeusto

Same issue in 0.15.0

fuzzzor avatar Feb 18 '24 10:02 fuzzzor

Found a temporal solution for docker compose.

You can create a folder in your host machine called "favicon" and inside that add you desired favicon with this three names:

  • favicon.png
  • favicon-squared.png
  • favicon.svg

It can be the exact same image just renamed, I only tried with a 32x32 image.

And then mount the volume as if it was the original files for homarr, like this

services:
  homarr:
    container_name: homarr
    image: ghcr.io/ajnart/homarr:latest
    restart: unless-stopped
    volumes:
      - ./apps/homarr/favicon/:/app/public/imgs/favicon

Then clear your browser cache data and it should be it 2024-06-28-22-19-35

m0r4a avatar Jun 29 '24 04:06 m0r4a

Well done. This solution work fine !

fuzzzor avatar Jun 29 '24 17:06 fuzzzor