From 825dd6f382ad698cc7a004ffeb8e30c56459ae7d Mon Sep 17 00:00:00 2001 From: RaidMax Date: Tue, 2 Nov 2021 18:12:47 -0500 Subject: [PATCH] update country flag api --- WebfrontCore/wwwroot/js/action.js | 2 +- WebfrontCore/wwwroot/js/profile.js | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) 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');