diff --git a/WebfrontCore/wwwroot/js/action.js b/WebfrontCore/wwwroot/js/action.js index 6e05163a7..c8cc167ca 100644 --- a/WebfrontCore/wwwroot/js/action.js +++ b/WebfrontCore/wwwroot/js/action.js @@ -99,7 +99,7 @@ $(document).ready(function () { $.get('https://ip2c.org/' + $(address).data('ip'), function (result) { const countryCode = result.split(';')[1].toLowerCase(); if (countryCode !== 'zz') { - $(address).css('background-image', `url(https://www.countryflags.io/${countryCode}/flat/64.png)`); + $(address).css('background-image', `url('https://flagcdn.com/w80/${countryCode}.png')`); } }); }); diff --git a/WebfrontCore/wwwroot/js/profile.js b/WebfrontCore/wwwroot/js/profile.js index 3ec8ee536..8472f92bf 100644 --- a/WebfrontCore/wwwroot/js/profile.js +++ b/WebfrontCore/wwwroot/js/profile.js @@ -26,7 +26,7 @@ $('#ip_lookup_country').text(country); if (countryCode !== 'zz' && countryCode !== '') { - $(address).css('background-image', `url(https://www.countryflags.io/${countryCode}/flat/64.png)`); + $(address).css('background-image', `url('https://flagcdn.com/w80/${countryCode}.png')`); } }); }); @@ -34,7 +34,6 @@ /* set the end time for initial event query */ startAt = $('.loader-data-time').last().data('time'); - $('#filter_meta_container_button').click(function () { $('#filter_meta_container').hide(); $('#filter_meta_container').removeClass('d-none');