mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
WebUI: Fix unknown country flag path
This commit is contained in:
parent
29201fa016
commit
7e95375cec
1 changed files with 1 additions and 1 deletions
|
@ -1752,7 +1752,7 @@ window.qBittorrent.DynamicTable ??= (() => {
|
|||
td.append(span);
|
||||
}
|
||||
|
||||
span.style.backgroundImage = `url('images/flags/${country_code ?? "xx"}.svg')`;
|
||||
span.style.backgroundImage = `url('images/flags/${country_code || "xx"}.svg')`;
|
||||
span.textContent = country;
|
||||
td.title = country;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue