Hangfire (v1.8.4) favicon not being displayed

152 views Asked by At

I'm using Hangfire version 1.8.4 to schedule some background processes, but when I fire the application it doesn't displays a default favicon.

This is how it's displayed right now:

enter image description here

Does someone know how to properly insert an icon onto Hangfire?

I'm using ASP.NET Core MVC 6.

I tried running the raw project (without any modifications) and the favicon is not displayed.

Thanks!

1

There are 1 answers

0
cpimentel On

I've managed to solve the problem by implementing the new feature and submitting a PR, which was accepted and merged.

The next version (1.8.5) will be released and contains a new property FavIconPath inside DashboardOptions.

https://github.com/HangfireIO/Hangfire/pull/2251

That's it.

Update:

Hangfire 1.8.5 was released, so now whoever wants to display a favicon simply needs to set the new FaviconPath property inside the DashboardOptions class.

Like this

Thank you all